mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
14 lines
290 B
Text
14 lines
290 B
Text
|
|
#!/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
|