mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
1.0 KiB
1.0 KiB
Quick Build Guide
Build the Installer
# One command to build everything
make package
This creates dist/Knoe Installer.app - a self-contained macOS application.
Usage
GUI Mode (double-click):
- Open
dist/Knoe Installer.appin Finder
Command-line:
# Auto-detect display (GUI or ncurses)
./dist/Knoe\ Installer.app/Contents/MacOS/knoe-installer
# Force ncurses mode
./dist/Knoe\ Installer.app/Contents/MacOS/knoe-installer --no-gui
Install to /Applications
cp -r "dist/Knoe Installer.app" /Applications/
Makefile Targets
make help- Show available targetsmake install- Install build dependenciesmake build- Build the binarymake package- Create .app bundlemake clean- Remove build artifactsmake test- Test the built binary
First-time Setup
make install # Install PyInstaller and dependencies
make package # Build everything
Details
See docs/build-system.md for complete documentation.