mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
splash is the day that you got in my system
This commit is contained in:
parent
13e0db6914
commit
78ebead3fd
1 changed files with 12 additions and 3 deletions
|
|
@ -792,13 +792,22 @@ def build(bld):
|
||||||
obj.install_path = bld.env['CONFDIR']
|
obj.install_path = bld.env['CONFDIR']
|
||||||
|
|
||||||
# Icons/Images
|
# Icons/Images
|
||||||
lowercase_appname = Options.options.program_name.lower();
|
|
||||||
bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/*.png'))
|
bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/*.png'))
|
||||||
bld.install_files(os.path.join (bld.env['DATADIR'], 'pixmaps'), bld.path.ant_glob('pixmaps/*.xpm'))
|
bld.install_files(os.path.join (bld.env['DATADIR'], 'pixmaps'), bld.path.ant_glob('pixmaps/*.xpm'))
|
||||||
bld.install_as(os.path.join (bld.env['DATADIR'], 'splash.png') , 'icons/' + lowercase_appname + '-splash.png')
|
|
||||||
bld.install_as(os.path.join (bld.env['DATADIR'], 'small-splash.png') , 'icons/' + lowercase_appname + '-small-splash.png')
|
|
||||||
bld.install_files(bld.env['DATADIR'], 'ArdourMono.ttf')
|
bld.install_files(bld.env['DATADIR'], 'ArdourMono.ttf')
|
||||||
|
|
||||||
|
# Splash
|
||||||
|
lowercase_appname = Options.options.program_name.lower();
|
||||||
|
obj = bld(features = 'copy')
|
||||||
|
obj.source = 'icons/' + lowercase_appname + '-splash.png'
|
||||||
|
obj.target = 'splash.png'
|
||||||
|
obj.install_path = bld.env['DATADIR']
|
||||||
|
obj = bld(features = 'copy')
|
||||||
|
obj.source = 'icons/' + lowercase_appname + '-small-splash.png'
|
||||||
|
obj.target = 'small-splash.png'
|
||||||
|
obj.install_path = bld.env['DATADIR']
|
||||||
|
|
||||||
|
|
||||||
if bld.env['build_target'] == 'mingw':
|
if bld.env['build_target'] == 'mingw':
|
||||||
# These icons need to overwrite the files already installed in the icons
|
# These icons need to overwrite the files already installed in the icons
|
||||||
# directory above. Do this in the external packaging scripts for now.
|
# directory above. Do this in the external packaging scripts for now.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue