From 927105992025c31a0b75e57d50ff1f1dcaab687e Mon Sep 17 00:00:00 2001 From: RemixDev Date: Thu, 27 Aug 2020 14:34:39 +0200 Subject: [PATCH] Updated spec file for macOS --- deemix-pyweb.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/deemix-pyweb.spec b/deemix-pyweb.spec index 423c577..e07f3fe 100644 --- a/deemix-pyweb.spec +++ b/deemix-pyweb.spec @@ -23,20 +23,24 @@ pyz = PYZ(a.pure, a.zipped_data, if sys.platform.startswith('darwin'): exe = EXE(pyz, a.scripts, - a.binaries, - a.zipfiles, - a.datas, [], + exclude_binaries=True, name='deemix-pyweb', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, - upx_exclude=[], - runtime_tmpdir=None, console=False, icon=f"icon.icns") - app = BUNDLE(exe, + coll = COLLECT(exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='deemix-pyweb') + app = BUNDLE(coll, name='deemix-pyweb.app', icon="icon.icns", bundle_identifier=None)