mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Collect architecture independent data in 'share' subfolder. This also matches the install path
16 lines
248 B
Python
16 lines
248 B
Python
#!/usr/bin/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
|