mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
16 lines
287 B
Python
16 lines
287 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
mediafiles = bld.path.ant_glob ('**', excl='wscript')
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'media'), mediafiles, relative_trick=True)
|
|
|
|
def options(opt):
|
|
pass
|