Browse Source

osx.spec: trivial formatting

master
SomberNight 6 years ago
parent
commit
0b5d9185ff
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 43
      contrib/osx/osx.spec

43
contrib/osx/osx.spec

@ -139,24 +139,27 @@ if APP_SIGN:
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(pyz, exe = EXE(
a.scripts, pyz,
a.binaries, a.scripts,
a.datas, a.binaries,
name=PACKAGE, a.datas,
debug=False, name=PACKAGE,
strip=False, debug=False,
upx=True, strip=False,
icon=electrum+ICONS_FILE, upx=True,
console=False) icon=electrum+ICONS_FILE,
console=False,
app = BUNDLE(exe, )
version = VERSION,
name=PACKAGE + '.app', app = BUNDLE(
icon=electrum+ICONS_FILE, exe,
bundle_identifier=None, version = VERSION,
info_plist={ name=PACKAGE + '.app',
'NSHighResolutionCapable': 'True', icon=electrum+ICONS_FILE,
'NSSupportsAutomaticGraphicsSwitching': 'True' bundle_identifier=None,
} info_plist={
'NSHighResolutionCapable': 'True',
'NSSupportsAutomaticGraphicsSwitching': 'True'
},
) )

Loading…
Cancel
Save