Add load button for SPL.
[dcpomatic.git] / cscript
diff --git a/cscript b/cscript
index c38528143f07926c54ab64557a8eea65272fe149..2bee7ed8520ee2139b5c7d70ebdfd264b49046ad 100644 (file)
--- a/cscript
+++ b/cscript
@@ -331,14 +331,14 @@ def dependencies(target):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
-    deps.append(('libdcp', 'ee05b1c'))
-    deps.append(('libsub', '1cf5cdf'))
+    deps.append(('libdcp', '6ff5bc5'))
+    deps.append(('libsub', 'df489ce'))
     deps.append(('rtaudio-cdist', '739969e'))
 
     return deps
 
 def option_defaults():
-    return { "player-only": False, "gui": True, "variant": None }
+    return { "gui": True, "variant": None }
 
 def configure_options(target, options):
     opt = ''
@@ -363,9 +363,6 @@ def configure_options(target, options):
     if not options['gui']:
         opt += ' --disable-gui'
 
-    if options['player-only']:
-        opt += ' --player-only'
-
     if options['variant'] is not None:
         opt += ' --variant=%s' % options['variant']
 
@@ -604,6 +601,7 @@ def make_appimage(target, nice_name, internal_name, version):
         print('Name=%s' % nice_name, file=f)
         print('Icon=%s' % internal_name, file=f)
     target.command('cp graphics/linux/256/%s.png build/%s.AppDir' % (internal_name, nice_filename))
+    target.command('linuxdeploy-x86_64.AppImage --appdir build/%s.AppDir' % nice_filename)
     target.command('appimagetool-x86_64.AppImage build/%s.AppDir' % nice_filename)
     target.command('mv %s-x86_64.AppImage build/%s-%s-x86_64.AppImage' % (nice_filename, nice_filename, version))
     return os.path.abspath('build/%s-%s-x86_64.AppImage' % (nice_filename, version))