73a91402cd
there is any, and copy that state to sessions created from those templates. Should fix #4525. Breaks existing session templates, sorry; they can be fixed by moving the .template file into a new directory with the name of the template (minus the .template). git-svn-id: svn://localhost/ardour2/branches/3.0@10982 d708f5d6-7413-0410-9779-e7cbd77b26cf
33 lines
941 B
Python
33 lines
941 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
|
|
subst_dict = {}
|
|
if bld.is_defined('COREAUDIO_SUPPORT'):
|
|
subst_dict['%JACK_INPUT%'] = 'coreaudio:Built-in Audio:in'
|
|
subst_dict['%JACK_OUTPUT%'] = 'coreaudio:Built-in Audio:out'
|
|
else:
|
|
subst_dict['%JACK_INPUT%'] = 'alsa_pcm:playback_'
|
|
subst_dict['%JACK_OUTPUT%'] = 'alsa_pcm:capture_'
|
|
|
|
templates = bld.path.ant_glob('*.template.in')
|
|
for t in templates:
|
|
obj = bld(features = 'subst')
|
|
obj.source = [ t ]
|
|
dir_name = os.path.basename(t.srcpath()).replace('.template.in', '')
|
|
file_name = os.path.basename(t.srcpath()).replace('.in', '')
|
|
obj.target = [ os.path.join(dir_name, file_name) ]
|
|
obj.dict = subst_dict
|
|
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', os.path.join('templates', dir_name))
|
|
|
|
def options(opt):
|
|
pass
|