2011-01-01 11:59:38 -05:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import glob
|
|
|
|
|
|
|
|
srcdir = '.'
|
|
|
|
blddir = 'build'
|
|
|
|
|
2011-01-01 12:13:32 -05:00
|
|
|
def configure(conf):
|
|
|
|
pass
|
|
|
|
|
2011-01-01 11:59:38 -05:00
|
|
|
def build(bld):
|
2011-04-22 18:15:21 -04:00
|
|
|
|
2011-01-01 11:59:38 -05:00
|
|
|
subst_dict = {}
|
|
|
|
if bld.env['COREAUDIO']:
|
|
|
|
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 = glob.glob(os.path.join(bld.get_curdir(), '*.template.in'))
|
|
|
|
for t in templates:
|
|
|
|
b = os.path.basename(t)
|
|
|
|
obj = bld.new_task_gen('subst')
|
2011-01-01 12:43:53 -05:00
|
|
|
obj.source = [ b ]
|
|
|
|
obj.target = [ b.replace('.in', '') ]
|
2011-01-01 11:59:38 -05:00
|
|
|
obj.dict = subst_dict
|
|
|
|
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')
|
|
|
|
|
|
|
|
def set_options(opt):
|
|
|
|
pass
|