Compare commits

...

2 Commits

Author SHA1 Message Date
Rim
4da2c9f329 chore: add linux configuration script 2025-03-11 05:34:53 -04:00
Rim
d9071feea0 chore(build.py): update for linux 2025-03-10 20:20:20 -04:00
2 changed files with 88 additions and 14 deletions

View File

@ -6,9 +6,10 @@ import PyInstaller.__main__
# Initialize constants
SCRIPT = "cod_api_tool.py"
ICON = "assets/icon.ico"
NAME = "cod_api_tool"
DIST_PATH = "bin/build"
DIST_PATH = os.path.join("bin", "build")
ICON_WIN = "assets/icon.ico"
ICON_LINUX = "assets/icon.png" # Linux uses .png for icons
# Get absolute paths to data files
script_dir = os.path.abspath(os.path.dirname(__file__))
@ -20,30 +21,41 @@ if not os.path.exists(replacements_json):
print(f"ERROR: {replacements_json} not found. Make sure this file exists.")
sys.exit(1)
# Determine system platform
is_windows = sys.platform == 'win32'
# Activate the virtual environment
if sys.platform == 'win32':
if is_windows:
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'Scripts', 'activate')
else:
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'bin', 'activate')
subprocess.call(venv_activation_script, shell=True)
# Run PyInstaller
PyInstaller.__main__.run([
# Use the correct icon based on platform
ICON = ICON_WIN if is_windows else ICON_LINUX
# Construct PyInstaller command
pyinstaller_args = [
SCRIPT,
'--name', NAME,
'--noconfirm',
'--onefile',
'--console',
'--icon', ICON,
'--distpath', DIST_PATH,
# This is the correct way to add the data file - preserve the directory structure
'--add-data', f"{charset_normalizer_data};charset_normalizer/assets",
'--add-data', f"{replacements_json};data" # Note: using 'data' as the destination folder
])
'--add-data', f"{charset_normalizer_data}{os.pathsep}charset_normalizer/assets",
'--add-data', f"{replacements_json}{os.pathsep}data",
]
# Clean up the build directory and spec file
# Add icon only if it exists
if os.path.exists(ICON):
pyinstaller_args.extend(['--icon', ICON])
# Run PyInstaller
PyInstaller.__main__.run(pyinstaller_args)
# Clean up build directory and spec file
shutil.rmtree('build')
os.remove(f'{NAME}.spec')
print(f"Build completed successfully. Executable is in {DIST_PATH}/{NAME}.exe")
input("Press Enter to continue...")
# Notify user where the output is
executable_name = f"{NAME}.exe" if is_windows else NAME
print(f"Build completed successfully. Executable is in {DIST_PATH}/{executable_name}")

62
configure.sh Executable file
View File

@ -0,0 +1,62 @@
#!/bin/bash
set -e
echo "Updating package lists..."
sudo apt-get update -y
echo "Installing build dependencies..."
sudo apt-get install -y \
python3.9 \
python3.9-dev \
python3.9-venv \
python3-pip \
build-essential \
libssl-dev \
libffi-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
libgdbm-dev \
libncurses5-dev \
libncursesw5-dev \
liblzma-dev \
uuid-dev \
tk-dev \
libxml2-dev \
libxmlsec1-dev \
libmpdec-dev \
wget \
curl \
llvm \
xz-utils \
patchelf \
gcc \
make \
pkg-config
# Ensure pip is up to date
echo "Upgrading pip..."
python3.9 -m ensurepip --upgrade
python3.9 -m pip install --upgrade pip
# Add Python and pip to PATH (in case it's not already there)
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# Install essential Python build tools
echo "Installing Python build tools..."
python3.9 -m pip install wheel setuptools
# Install PyInstaller
echo "Installing PyInstaller and other Python dependencies..."
python3.9 -m pip install pyinstaller
# Verify installation
echo "Verifying installation..."
python3.9 --version
pip --version
pyinstaller --version
echo "Setup complete!"