mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
NOTE: Compiles, but broken (crash on adding MIDI track). git-svn-id: svn://localhost/ardour2/branches/midi@1292 d708f5d6-7413-0410-9779-e7cbd77b26cf
10 lines
300 B
Python
10 lines
300 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))
|