30 lines
788 B
Plaintext
30 lines
788 B
Plaintext
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
import glob
|
||
|
|
||
|
srcdir = '.'
|
||
|
blddir = 'build'
|
||
|
|
||
|
def build(bld):
|
||
|
|
||
|
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')
|
||
|
obj.source = b
|
||
|
obj.target = b.replace('.in', '')
|
||
|
obj.dict = subst_dict
|
||
|
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')
|
||
|
|
||
|
def set_options(opt):
|
||
|
pass
|