Add some lua scripts

This commit is contained in:
Robin Gareus
2016-02-23 15:44:41 +01:00
parent 942471d21f
commit 1473c2d364
13 changed files with 422 additions and 0 deletions

16
scripts/wscript Normal file
View 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')
bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
def options(opt):
pass