summaryrefslogtreecommitdiff
path: root/patchfiles/wscript
blob: ea54532e1326d62c74db9218f04560f0c6026dd2 (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'], 'patchfiles'), patchfiles)

def options(opt):
    pass