14 lines
290 B
Python
14 lines
290 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
datadir = os.path.join(bld.env['DATADIR'], 'web_surfaces')
|
|
surfaces = bld.path.ant_glob ('**', excl='wscript')
|
|
bld.install_files (datadir, surfaces, relative_trick=True)
|
|
|
|
def options(opt):
|
|
pass
|