David Robillard
723ab60b39
git-svn-id: svn://localhost/ardour2/branches/3.0@10162 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
339 B
Python
19 lines
339 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
presets = bld.path.ant_glob ('*.preset')
|
|
formats = bld.path.ant_glob ('*.format')
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'),
|
|
presets + formats)
|
|
|
|
def options(opt):
|
|
pass
|