mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Also move Lua scripts to share subfolder
This commit is contained in:
parent
bf649cd68a
commit
180843f9bd
129 changed files with 2 additions and 2 deletions
16
share/scripts/wscript
Normal file
16
share/scripts/wscript
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
top = '.'
|
||||
out = 'build'
|
||||
|
||||
def configure(conf):
|
||||
pass
|
||||
|
||||
def build(bld):
|
||||
scripts = bld.path.ant_glob ('*.lua', excl=['^_*'])
|
||||
bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
|
||||
|
||||
def options(opt):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue