X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=b6088e0cb671925a32b7bdfd270289dfe6552f9f;hb=4782e1c0beec98560950a616902669f09a98faae;hp=0dc5255bbb53980c12022280d15cd7cfa9634f1e;hpb=30df94bc9c692b62ad640e250a1bd7d2e48e6f5d;p=dcpomatic.git diff --git a/cscript b/cscript index 0dc5255bb..b6088e0cb 100644 --- a/cscript +++ b/cscript @@ -3,11 +3,8 @@ import shutil import os def dependencies(target): - if target.platform == 'windows': - return () - else: - return (('ffmpeg-cdist', 'e797834288eaf05a2f406524ae04aaa0f114cb08'), - ('libdcp', 'v0.67')) + return (('ffmpeg-cdist', 'b1219246a0cce9a4b916669d506bb33c925225c3'), + ('libdcp', '658695856029c7ae80e3556d07a1a5cb1b51cf1d')) def build(target): cmd = './waf configure --prefix=%s' % target.work_dir_cscript() @@ -27,7 +24,8 @@ def package(target, version): if target.platform == 'windows': shutil.copyfile('build/platform/windows/installer.%s.nsi' % target.bits, 'build/platform/windows/installer2.%s.nsi' % target.bits) target.command('sed -i "s~%%resources%%~%s/platform/windows~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), target.bits)) - target.command('sed -i "s~%%deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, target.bits)) + target.command('sed -i "s~%%static_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.windows_prefix, target.bits)) + target.command('sed -i "s~%%cdist_deps%%~%s~g" build/platform/windows/installer2.%s.nsi' % (target.work_dir_cscript(), target.bits)) target.command('sed -i "s~%%binaries%%~%s/build~g" build/platform/windows/installer2.%s.nsi' % (os.getcwd(), target.bits)) target.command('sed -i "s~%%bits%%~32~g" build/platform/windows/installer2.%s.nsi' % target.bits) target.command('makensis build/platform/windows/installer2.%s.nsi' % target.bits) @@ -61,7 +59,7 @@ def package(target, version): return debs elif target.platform == 'osx': - target.command('bash platform/osx/make_dmg.sh') + target.command('bash platform/osx/make_dmg.sh %s' % target.work_dir_cscript()) return os.path.abspath(glob.glob('build/platform/osx/DCP-o-matic*.dmg')[0]) def make_pot(target):