summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-10-06 22:59:18 +0200
committerCarl Hetherington <cth@carlh.net>2020-10-06 22:59:18 +0200
commit27976883db4fdd05b6cf9d9b11ff66db637388c7 (patch)
tree61962d1c33a6a745ba4a6f22d78b1a06d8479c89
parentce8a8ab4ebd4158ac274ebfe85b720a844d29b09 (diff)
Add cscript.cdist
-rw-r--r--cscript7
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')