-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDigimonNDSRomEditor_linux.spec
More file actions
76 lines (74 loc) · 2.04 KB
/
DigimonNDSRomEditor_linux.spec
File metadata and controls
76 lines (74 loc) · 2.04 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- mode: python ; coding: utf-8 -*-
#
# PyInstaller build spec for the Digimon NDS ROM Editor (Linux).
#
# Build: pyinstaller DigimonNDSRomEditor_linux.spec
# Output: dist/DigimonNDSRomEditor/DigimonNDSRomEditor (+ supporting files)
#
# Mirrors DigimonNDSRomEditor.spec; Linux-specific deltas:
# - icon would be a PNG (Linux desktop entries reference image files
# rather than the Windows .ico/.exe resource scheme), commented out
# until an asset exists.
# - no `version=` line (that's a Windows PE resource, not a Linux thing).
a = Analysis(
['main.py'],
pathex=['.'],
binaries=[],
# Bundle the app icon so `QApplication.setWindowIcon` can find it at
# runtime — `icon=` below only affects the desktop-entry icon, not the
# window/taskbar icon Qt draws while the app is running.
datas=[('public/editor.png', 'public')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[
'PySide6.QtNetwork',
'PySide6.QtQml',
'PySide6.QtQuick',
'PySide6.QtQuick3D',
'PySide6.QtWebEngineCore',
'PySide6.QtWebEngineWidgets',
'PySide6.QtWebChannel',
'PySide6.QtMultimedia',
'PySide6.QtMultimediaWidgets',
'PySide6.Qt3DCore',
'PySide6.Qt3DRender',
'PySide6.QtCharts',
'PySide6.QtDataVisualization',
'PySide6.QtSensors',
'PySide6.QtSerialPort',
'PySide6.QtBluetooth',
'PySide6.QtPositioning',
],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='DigimonNDSRomEditor',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=False,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon='public/editor.png',
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=False,
upx_exclude=[],
name='DigimonNDSRomEditor',
)