18 lines
270 B
Python
18 lines
270 B
Python
#!/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
|