mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
18 lines
279 B
Text
18 lines
279 B
Text
|
|
#!/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
|