4fb3a23adb
Most wscripts use #!/usr/bin/env python Use that consistently. The wscripts are not executed directly and do not need the shebang path, but it might guide editors and other tools to recognize the files as being Python-ish.
19 lines
332 B
Python
19 lines
332 B
Python
#!/usr/bin/env 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'], 'export'),
|
|
presets + formats)
|
|
|
|
def options(opt):
|
|
pass
|