17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
|
#!/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
|