Skip to content

Commit 99b0c1c

Browse files
committed
Made .spec the official .macos.spec.
1 parent e9fcfb3 commit 99b0c1c

File tree

2 files changed

+32
-65
lines changed

2 files changed

+32
-65
lines changed

BlocklyPropClient.macos.spec

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,50 @@
11
# -*- mode: python -*-
2-
a = Analysis(['BlocklyPropClient.py'],
32

3+
block_cipher = None
4+
5+
6+
a = Analysis(['BlocklyPropClient.py'],
7+
binaries=None,
8+
datas=None,
49
hiddenimports=[],
5-
hookspath=None,
6-
runtime_hooks=None)
7-
pyz = PYZ(a.pure)
10+
hookspath=[],
11+
runtime_hooks=[],
12+
excludes=[],
13+
win_no_prefer_redirects=False,
14+
win_private_assemblies=False,
15+
cipher=block_cipher)
16+
17+
pyz = PYZ(a.pure, a.zipped_data,
18+
cipher=block_cipher)
19+
820
exe = EXE(pyz,
921
a.scripts,
1022
exclude_binaries=True,
1123
name='BlocklyPropClient',
1224
debug=False,
13-
strip=None,
25+
strip=False,
1426
upx=False,
15-
console=False,
16-
windowed=True
17-
)
18-
# icon='blocklyprop.ico'
27+
console=False , icon='BlocklyPropClient.icns')
28+
29+
# Propeller Tools
1930
propeller_libs_and_tools = Tree('propeller-tools', prefix='propeller-tools', excludes=['*.pdf', 'windows', 'linux'])
2031
propeller_libs_and_tools += [('about.txt', 'about.txt', 'About file')]
32+
33+
# Collection (edited to include Propeller Tools)
2134
coll = COLLECT(exe,
2235
a.binaries,
2336
a.zipfiles,
2437
a.datas,
2538
propeller_libs_and_tools,
26-
strip=None,
39+
strip=False,
2740
upx=False,
28-
name='BlocklyPropClient.app',
29-
icon=None,
30-
bundle_identifier=None)
41+
name='BlocklyPropClient')
42+
43+
app = BUNDLE(coll,
44+
name='BlocklyPropClient.app',
45+
icon='BlocklyPropClient.icns',
46+
bundle_identifier='com.ParallaxInc.BlocklyPropClient',
47+
info_plist={'CFBundleShortVersionString': '0.5.3'})
3148

32-
# Analysis
33-
# pathex=['D:\\Development\\python\\BlocklyPropClient'],
49+
# From Analysis
50+
# pathex=['/Users/<username>/PythonProjects/BlocklyPropClient'],

BlocklyPropClient.spec

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)