2011-03-13 12:23:35 -04:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2011-03-13 12:23:35 -04:00
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
presets = bld.path.ant_glob ('*.preset')
|
|
|
|
formats = bld.path.ant_glob ('*.format')
|
2011-04-22 18:15:21 -04:00
|
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'),
|
2011-03-13 12:23:35 -04:00
|
|
|
presets + formats)
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-03-13 12:23:35 -04:00
|
|
|
pass
|