65 lines
1.8 KiB
Bash
Executable file
65 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Exit on error
|
|
set -e
|
|
|
|
echo "--- Fluxer Reaper Cross-Distro Build Script ---"
|
|
echo "NOTE: For maximum compatibility (glibc), run this on your oldest target Linux distribution."
|
|
|
|
# Check for venv
|
|
if [ ! -d "venv" ]; then
|
|
echo "Creating virtual environment..."
|
|
python3 -m venv venv || {
|
|
echo "Error: Failed to create venv. You might need to install 'python3-venv'."
|
|
echo "Try: sudo apt install python3-venv"
|
|
exit 1
|
|
}
|
|
fi
|
|
|
|
echo "Activating virtual environment..."
|
|
source venv/bin/activate
|
|
|
|
# Self-healing pip check
|
|
if ! python3 -m pip --version > /dev/null 2>&1; then
|
|
echo "Warning: pip is missing or broken in venv. Attempting repair..."
|
|
python3 -m ensurepip --default-pip || {
|
|
echo "Error: Failed to repair pip automatically."
|
|
echo "Try recreating the venv: rm -rf venv && python3 -m venv venv"
|
|
exit 1
|
|
}
|
|
fi
|
|
|
|
echo "Ensuring build dependencies are up to date..."
|
|
pip install --upgrade pip --quiet
|
|
pip install pyinstaller --quiet
|
|
pip install -r requirements.txt --quiet
|
|
|
|
echo "Cleaning previous build artifacts..."
|
|
rm -rf build/ dist/
|
|
|
|
echo "Starting PyInstaller build..."
|
|
pyinstaller --clean fluxer-reaper.spec
|
|
|
|
echo "Generating Launch-Reaper.sh launcher..."
|
|
cat << 'EOF' > dist/Launch-Reaper.sh
|
|
#!/bin/bash
|
|
# Convenient launcher for Fluxer Reaper
|
|
# Ensures it runs in a terminal if possible, but the binary also has internal auto-terminal logic.
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
cd "$BASEDIR"
|
|
|
|
if [ -f "./fluxer-reaper" ]; then
|
|
./fluxer-reaper
|
|
else
|
|
echo "Error: fluxer-reaper binary not found in $(pwd)"
|
|
read -p "Press enter to exit..."
|
|
fi
|
|
EOF
|
|
chmod +x dist/Launch-Reaper.sh
|
|
|
|
echo "-----------------------------------"
|
|
echo "Build complete!"
|
|
echo "Standalone executable: dist/fluxer-reaper"
|
|
echo "Launcher script: dist/Launch-Reaper.sh"
|
|
echo "---"
|