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

import os

top = '.'
out = 'build'

def configure(conf):
    pass

def build(bld):
    maps = bld.path.ant_glob ('*.map')
    bld.install_files (os.path.join(bld.env['DATADIR'], 'midi_maps'),
                       maps)

def options(opt):
    pass