mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Clean up top-level source tree
Collect architecture independent data in 'share' subfolder. This also matches the install path
This commit is contained in:
parent
96ef1dc0ed
commit
54c4d3adc5
564 changed files with 25 additions and 25 deletions
18
share/export/wscript
Normal file
18
share/export/wscript
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#!/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
|
||||
Loading…
Add table
Add a link
Reference in a new issue