SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
23 additions and
20 deletions
-
contrib/osx/osx.spec
|
|
@ -139,24 +139,27 @@ if APP_SIGN: |
|
|
|
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) |
|
|
|
|
|
|
|
exe = EXE(pyz, |
|
|
|
a.scripts, |
|
|
|
a.binaries, |
|
|
|
a.datas, |
|
|
|
name=PACKAGE, |
|
|
|
debug=False, |
|
|
|
strip=False, |
|
|
|
upx=True, |
|
|
|
icon=electrum+ICONS_FILE, |
|
|
|
console=False) |
|
|
|
|
|
|
|
app = BUNDLE(exe, |
|
|
|
version = VERSION, |
|
|
|
name=PACKAGE + '.app', |
|
|
|
icon=electrum+ICONS_FILE, |
|
|
|
bundle_identifier=None, |
|
|
|
info_plist={ |
|
|
|
'NSHighResolutionCapable': 'True', |
|
|
|
'NSSupportsAutomaticGraphicsSwitching': 'True' |
|
|
|
} |
|
|
|
exe = EXE( |
|
|
|
pyz, |
|
|
|
a.scripts, |
|
|
|
a.binaries, |
|
|
|
a.datas, |
|
|
|
name=PACKAGE, |
|
|
|
debug=False, |
|
|
|
strip=False, |
|
|
|
upx=True, |
|
|
|
icon=electrum+ICONS_FILE, |
|
|
|
console=False, |
|
|
|
) |
|
|
|
|
|
|
|
app = BUNDLE( |
|
|
|
exe, |
|
|
|
version = VERSION, |
|
|
|
name=PACKAGE + '.app', |
|
|
|
icon=electrum+ICONS_FILE, |
|
|
|
bundle_identifier=None, |
|
|
|
info_plist={ |
|
|
|
'NSHighResolutionCapable': 'True', |
|
|
|
'NSSupportsAutomaticGraphicsSwitching': 'True' |
|
|
|
}, |
|
|
|
) |
|
|
|