X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=ee55742a112cc71e6e4d342d93dba1c54a168e78;hb=487a576381c4d07b50774a436323a9b064972576;hp=99cf08bb90428cbc9b096b73138dfb5f82937d31;hpb=da246e45e83cb2fa02c7c051315f792b919c8712;p=dcpomatic.git diff --git a/cscript b/cscript index 99cf08bb9..ee55742a1 100644 --- a/cscript +++ b/cscript @@ -3,8 +3,8 @@ import shutil import os def dependencies(target): - return (('ffmpeg-cdist', 'b1219246a0cce9a4b916669d506bb33c925225c3'), - ('libdcp', '6c736757edebb8ee4c84284403b95dcf5cb59ece')) + return (('ffmpeg-cdist', '0b7ef017aca8b572914518c759db1e234d8fc505'), + ('libdcp', 'v0.83')) def build(target): cmd = './waf configure --prefix=%s' % target.work_dir_cscript() @@ -59,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): @@ -71,4 +71,5 @@ def make_pot(target): def make_manual(target): os.chdir('doc/manual') target.command('make') - return [os.path.abspath('pdf'), os.path.abspath('html')] + target.command('pdflatex colour.tex') + return [os.path.abspath('pdf'), os.path.abspath('html'), os.path.abspath('colour.pdf')]