Fix incorrect VPosition in subtitles.
[libdcp.git] / cscript
diff --git a/cscript b/cscript
index cec6d88b10dbf882ab93593fc8aac9400e57eee3..e39268372d0c65dcd6ffdb65481c09e3860efec1 100644 (file)
--- a/cscript
+++ b/cscript
@@ -1,20 +1,22 @@
 import os
 
 def dependencies(target):
-    if target.platform == 'windows':
-        return ()
-    else:
-        # XXX: should be some versions in here
-        return (('libcxml', None),)
+    return (('libcxml', None), ('openjpeg-cdist', '5d8bffd'))
 
-def build(target):
-    cmd = './waf configure --prefix=%s' % target.work_dir_cscript()
+def build(target, options):
+    cmd = './waf configure --disable-examples --prefix=%s' % target.directory
     if target.platform == 'linux':
         cmd += ' --static'
+        if target.distro == 'centos':
+            cmd += ' --disable-tests'
     elif target.platform == 'windows':
-        cmd += ' --target-windows'
+        cmd += ' --target-windows --disable-tests'
     elif target.platform == 'osx':
-        cmd += ' --osx'
+        cmd += ' --disable-tests'
+
+    if target.debug:
+        cmd += ' --enable-debug'
+
     target.command(cmd)
     target.command('./waf build install')