ardour/share/web_surfaces/wscript
2020-04-09 20:56:46 +02:00

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