209d967b1b
git-svn-id: svn://localhost/trunk/ardour2@24 d708f5d6-7413-0410-9779-e7cbd77b26cf
11 lines
294 B
Python
11 lines
294 B
Python
# -*- 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))
|