summaryrefslogtreecommitdiff
path: root/templates/wscript
blob: ab7e8d076865101039d68bb33dbd8009ea8e2098 (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
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/python

#
# Paul notes (April 2013)
#
# There seems to be little point in including templates with Ardour
# until or as long as the input connections of tracks depends on
# the user's hardware configuration. This makes any pre-existing
# templates potentially wrong/useless/annoying for anyone who
# uses a different hardware input configuration than was used
# to create the templates.
#
# Templates should be created by the user, not by us.
#
# I modified the code below, but have not tested it. For now
# this directory will be removed from the top level wscript's
# list of children.
#

import os

top = '.'
out = 'build'

def configure(conf):
    pass

def build(bld):

    templates = bld.path.ant_glob('*/*.template')
    for t in templates:
        file_name = os.path.basename(t.srcpath())
        dir_name = os.path.dirname(t.srcpath())
        obj = bld(features = 'subst',
                  name = 'template',
                  source = [ t ],
                  target = [ os.path.join(dir_name, file_name) ],
                  install_path = os.path.join(bld.env['DATADIR'], os.path.join('templates', dir_name)))

def options(opt):
    pass