summaryrefslogtreecommitdiff
path: root/patchfiles/wscript
blob: 3b852974c3918aa0f3a9e2d297671437a5f6b9b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

import os

top = '.'
out = 'build'

def configure(conf):
    pass

def build(bld):
    patchfiles = bld.path.ant_glob ('*.midnam')
    bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'patchfiles'), patchfiles)

def options(opt):
    pass