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. 11
      contrib/osx/osx.spec

11
contrib/osx/osx.spec

@ -139,7 +139,8 @@ 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(
pyz,
a.scripts, a.scripts,
a.binaries, a.binaries,
a.datas, a.datas,
@ -148,9 +149,11 @@ exe = EXE(pyz,
strip=False, strip=False,
upx=True, upx=True,
icon=electrum+ICONS_FILE, icon=electrum+ICONS_FILE,
console=False) console=False,
)
app = BUNDLE(exe, app = BUNDLE(
exe,
version = VERSION, version = VERSION,
name=PACKAGE + '.app', name=PACKAGE + '.app',
icon=electrum+ICONS_FILE, icon=electrum+ICONS_FILE,
@ -158,5 +161,5 @@ app = BUNDLE(exe,
info_plist={ info_plist={
'NSHighResolutionCapable': 'True', 'NSHighResolutionCapable': 'True',
'NSSupportsAutomaticGraphicsSwitching': 'True' 'NSSupportsAutomaticGraphicsSwitching': 'True'
} },
) )

Loading…
Cancel
Save