Fix Python whitespace (follow PEP8 guidelines, reformatted by Python Reindent)
[ardour.git] / export / wscript
1 #!/usr/bin/python
2
3 import os
4 import glob
5
6 srcdir = '.'
7 blddir = 'build'
8
9 def configure(conf):
10     pass
11
12 def build(bld):
13     presets = glob.glob (os.path.join(bld.get_curdir(), '*.preset'))
14     formats = glob.glob (os.path.join(bld.get_curdir(), '*.format'))
15     bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'export'),
16                       presets + formats)
17
18 def set_options(opt):
19     pass