summaryrefslogtreecommitdiff
path: root/templates/wscript
blob: 7d01a73bb8b0ad19f577c3657ed65bc5872a9d0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/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 ]
        obj.target = [ os.path.basename(t.srcpath()).replace('.in', '') ]
        obj.dict = subst_dict
        obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')

def options(opt):
    pass