summaryrefslogtreecommitdiff
path: root/templates/SConscript
blob: 4269a1b9881856c3150564d72ad4469901be3c63 (plain)
1
2
3
4
5
6
7
8
9
# -*- python -*-

import os
import glob
template_files = glob.glob('*.template')

Import('env install_prefix')
env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/templates'), template_files))
env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_files))