mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@12352 d708f5d6-7413-0410-9779-e7cbd77b26cf
16 lines
272 B
Python
16 lines
272 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
patchfiles = bld.path.ant_glob ('*.midnam')
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'patchfiles'), patchfiles)
|
|
|
|
def options(opt):
|
|
pass
|