-
Notifications
You must be signed in to change notification settings - Fork 10
/
padpyght-bin.spec
34 lines (30 loc) · 924 Bytes
/
padpyght-bin.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- mode: python -*-
a = Analysis(['start.py'],
pathex=['/home/lifning/git/padpyght'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pgu_theme = Tree('/usr/share/pgu/themes/default', prefix='default')
padpyght_skins = Tree('padpyght/skins', prefix='padpyght/skins')
readme = [('README.md', 'README.md', 'DATA'),
('COPYING', 'COPYING', 'DATA')]
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='padpyght.exe',
debug=False,
strip=None,
upx=True,
console=False,
icon='gamepad.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
pgu_theme,
padpyght_skins,
readme,
strip=None,
upx=True,
name='padpyght-bin')