2016-02-23 09:44:41 -05:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def build(bld):
|
2016-08-09 21:12:11 -04:00
|
|
|
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
|