blob: c3bbc08bbca30512695dca2f1026d96f7d2b4e87 (
plain)
1
2
3
4
5
6
7
|
def build(target, options):
cmd = './waf configure --without-libsndfile --prefix=%s' % target.directory
if target.platform == 'linux':
cmd += ' --static'
target.command(cmd)
target.command('./waf build install')
|