mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-26 16:37:44 +01:00
merge 12436:12607 from svn+ssh://ardoursvn@subversion.ardour.org/ardour2/branches/3.0
git-svn-id: svn://localhost/ardour2/branches/3.0-SG@12608 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
6ef90ffe5c
commit
f228d2c68e
86 changed files with 6512 additions and 4626 deletions
|
|
@ -10,24 +10,21 @@ def configure(conf):
|
|||
|
||||
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'
|
||||
subst_dict = {'JACK_INPUT': 'coreaudio:Built-in Audio:in', 'JACK_OUTPUT': 'coreaudio:Built-in Audio:out'}
|
||||
else:
|
||||
subst_dict['%JACK_INPUT%'] = 'alsa_pcm:playback_'
|
||||
subst_dict['%JACK_OUTPUT%'] = 'alsa_pcm:capture_'
|
||||
subst_dict = {'JACK_INPUT': 'system:playback_','JACK_OUTPUT': 'system:capture_'}
|
||||
|
||||
templates = bld.path.ant_glob('*.template.in')
|
||||
templates = bld.path.ant_glob('*/*.template.in')
|
||||
for t in templates:
|
||||
obj = bld(features = 'subst')
|
||||
obj.name = 'template'
|
||||
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))
|
||||
obj = bld(features = 'subst',
|
||||
name = 'template',
|
||||
source = [ t ],
|
||||
target = [ os.path.join(dir_name, file_name) ],
|
||||
install_path = os.path.join(bld.env['DATADIR'], 'ardour3', os.path.join('templates', dir_name)))
|
||||
obj.__dict__.update(subst_dict)
|
||||
|
||||
def options(opt):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue