mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
19 lines
391 B
Text
19 lines
391 B
Text
|
|
#!/usr/bin/python
|
||
|
|
|
||
|
|
import os
|
||
|
|
|
||
|
|
top = '.'
|
||
|
|
out = 'build'
|
||
|
|
|
||
|
|
def configure(conf):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def build(bld):
|
||
|
|
devinfo = bld.path.ant_glob ('*.device')
|
||
|
|
profiles = bld.path.ant_glob ('*.profile')
|
||
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'mcp'), devinfo)
|
||
|
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'mcp'), profiles)
|
||
|
|
|
||
|
|
def options(opt):
|
||
|
|
pass
|