giant freakin documentation and reorganization pass, it also uses cmake because all the building was getting too complicated for shell scripts

This commit is contained in:
2025-09-29 20:31:42 -07:00
parent a5f837189b
commit 0edb4b50d2
71 changed files with 4895 additions and 127 deletions

48
seagull.spec.in Normal file
View File

@@ -0,0 +1,48 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['@CMAKE_SOURCE_DIR@/app/desktop.py'],
pathex=[],
binaries=[],
datas=[
('@CMAKE_SOURCE_DIR@/app/basepak', 'basepak'),
('@CMAKE_CURRENT_BINARY_DIR@/basepak', 'basepak'),
('opt', './opt')
],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
splash = Splash("@CMAKE_SOURCE_DIR@/pak/static/image/splash.png",
binaries=a.binaries, datas=a.datas,
text_pos=(0,0), text_size=12, text_color="white")
exe = EXE(
pyz,
splash,
splash.binaries,
a.scripts,
a.binaries,
a.datas,
[],
name='seagull',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)