diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-06 22:59:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-06 22:59:18 +0200 |
| commit | 27976883db4fdd05b6cf9d9b11ff66db637388c7 (patch) | |
| tree | 61962d1c33a6a745ba4a6f22d78b1a06d8479c89 | |
| parent | ce8a8ab4ebd4158ac274ebfe85b720a844d29b09 (diff) | |
Add cscript.cdist
| -rw-r--r-- | cscript | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cscript b/cscript new file mode 100644 index 00000000..2159f4b7 --- /dev/null +++ b/cscript @@ -0,0 +1,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') |
