12 lines
395 B
Bash
12 lines
395 B
Bash
#!/usr/bin/env bash
|
|
# Build script to compile Linux_Client into a standalone native ELF binary on Linux
|
|
set -e
|
|
|
|
echo "[*] Installing build requirements..."
|
|
pip3 install pyinstaller pgpy cryptography standard-imghdr
|
|
|
|
echo "[*] Compiling Linux_Client native binary..."
|
|
pyinstaller --onefile --clean --name Linux_Client.bin Linux_Client.py
|
|
|
|
echo "[+] Compilation successful: dist/Linux_Client.bin"
|