blob: 2159f4b78fccaf0ef3bd4b7bb9dff7ed8aa8e507 (
plain)
1
2
3
4
5
6
7
|
def dependencies(target, options):
return [('ffmpeg-cdist', None)]
def build(target, options):
target.command('./waf configure --prefix=%s' % target.directory)
target.command('./waf')
target.command('./waf install')
|