summaryrefslogtreecommitdiff
path: root/templates/SConscript
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-05-13 20:47:18 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-05-13 20:47:18 +0000
commitd09f6b3016bacbc2871a8946cbb24ad705076509 (patch)
treef27312839c2a772cb2ce068a4f28b2449ad869df /templates/SConscript
Initial revision
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'templates/SConscript')
-rw-r--r--templates/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/SConscript b/templates/SConscript
new file mode 100644
index 0000000000..4269a1b988
--- /dev/null
+++ b/templates/SConscript
@@ -0,0 +1,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))