18 lines
270 B
Plaintext
18 lines
270 B
Plaintext
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
|
||
|
top = '.'
|
||
|
out = 'build'
|
||
|
|
||
|
def configure(conf):
|
||
|
pass
|
||
|
|
||
|
def build(bld):
|
||
|
maps = bld.path.ant_glob ('*')
|
||
|
bld.install_files (os.path.join(bld.env['DATADIR'], 'plugin_metadata'),
|
||
|
maps)
|
||
|
|
||
|
def options(opt):
|
||
|
pass
|