mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
18 lines
328 B
Python
18 lines
328 B
Python
#!/usr/bin/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
|