David Robillard
4769db412d
git-svn-id: svn://localhost/ardour2/branches/3.0@9409 d708f5d6-7413-0410-9779-e7cbd77b26cf
20 lines
409 B
Python
20 lines
409 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
import glob
|
|
|
|
srcdir = '.'
|
|
blddir = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
presets = glob.glob (os.path.join(bld.get_curdir(), '*.preset'))
|
|
formats = glob.glob (os.path.join(bld.get_curdir(), '*.format'))
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'),
|
|
presets + formats)
|
|
|
|
def set_options(opt):
|
|
pass
|