13
0
livetrax/scripts/wscript

17 lines
263 B
Plaintext
Raw Normal View History

2016-02-23 09:44:41 -05:00
#!/usr/bin/python
import os
top = '.'
out = 'build'
def configure(conf):
pass
def build(bld):
scripts = bld.path.ant_glob ('*.lua', excl=['^_*'])
2016-02-23 09:44:41 -05:00
bld.install_files (os.path.join(bld.env['DATADIR'], 'scripts'), scripts)
def options(opt):
pass