Fix ExportFormatSpecification copy-c'tor
[ardour.git] / scripts / wscript
1 #!/usr/bin/python
2
3 import os
4
5 top = '.'
6 out = 'build'
7
8 def configure(conf):
9     pass
10
11 def build(bld):
12     scripts = bld.path.ant_glob ('*.lua', excl=['^_*'])
13     bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
14
15 def options(opt):
16     pass