mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
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.
16 lines
252 B
Python
16 lines
252 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
presets = bld.path.ant_glob ('*.preset')
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'osc'), presets)
|
|
|
|
def options(opt):
|
|
pass
|