mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
9 lines
307 B
Python
9 lines
307 B
Python
# -*- 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))
|