9f60916c45
git-svn-id: svn://localhost/ardour2/branches/3.0@10390 d708f5d6-7413-0410-9779-e7cbd77b26cf
18 lines
279 B
Python
18 lines
279 B
Python
#!/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'], 'ardour3', 'midi_maps'),
|
|
maps)
|
|
|
|
def options(opt):
|
|
pass
|