Updated cassowary to use scons.
[ardour.git] / templates / SConscript
1 # -*- python -*-
2
3 import os
4 import glob
5 template_files = glob.glob('*.template')
6
7 Import('env install_prefix')
8 env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/templates'), template_files))
9 env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_files))