mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 09:06:33 +01:00
11 lines
294 B
Text
11 lines
294 B
Text
|
|
# -*- python -*-
|
||
|
|
|
||
|
|
import os
|
||
|
|
import glob
|
||
|
|
pixmap_files = glob.glob('*.xpm')
|
||
|
|
|
||
|
|
Import('env install_prefix')
|
||
|
|
env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/pixmaps'), pixmap_files))
|
||
|
|
|
||
|
|
env.Alias('tarball', env.Distribute(env['DISTTREE'], [ 'SConscript' ] + pixmap_files))
|