chore(build.py): update for linux
This commit is contained in:
parent
ce97cd6ef4
commit
d9071feea0
40
build.py
40
build.py
@ -6,9 +6,10 @@ import PyInstaller.__main__
|
|||||||
|
|
||||||
# Initialize constants
|
# Initialize constants
|
||||||
SCRIPT = "cod_api_tool.py"
|
SCRIPT = "cod_api_tool.py"
|
||||||
ICON = "assets/icon.ico"
|
|
||||||
NAME = "cod_api_tool"
|
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
|
# Get absolute paths to data files
|
||||||
script_dir = os.path.abspath(os.path.dirname(__file__))
|
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.")
|
print(f"ERROR: {replacements_json} not found. Make sure this file exists.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Determine system platform
|
||||||
|
is_windows = sys.platform == 'win32'
|
||||||
|
|
||||||
# Activate the virtual environment
|
# Activate the virtual environment
|
||||||
if sys.platform == 'win32':
|
if is_windows:
|
||||||
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'Scripts', 'activate')
|
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'Scripts', 'activate')
|
||||||
else:
|
else:
|
||||||
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'bin', 'activate')
|
venv_activation_script = os.path.join(os.getcwd(), 'venv', 'bin', 'activate')
|
||||||
subprocess.call(venv_activation_script, shell=True)
|
|
||||||
|
|
||||||
# Run PyInstaller
|
# Use the correct icon based on platform
|
||||||
PyInstaller.__main__.run([
|
ICON = ICON_WIN if is_windows else ICON_LINUX
|
||||||
|
|
||||||
|
# Construct PyInstaller command
|
||||||
|
pyinstaller_args = [
|
||||||
SCRIPT,
|
SCRIPT,
|
||||||
'--name', NAME,
|
'--name', NAME,
|
||||||
'--noconfirm',
|
'--noconfirm',
|
||||||
'--onefile',
|
'--onefile',
|
||||||
'--console',
|
'--console',
|
||||||
'--icon', ICON,
|
|
||||||
'--distpath', DIST_PATH,
|
'--distpath', DIST_PATH,
|
||||||
# This is the correct way to add the data file - preserve the directory structure
|
'--add-data', f"{charset_normalizer_data}{os.pathsep}charset_normalizer/assets",
|
||||||
'--add-data', f"{charset_normalizer_data};charset_normalizer/assets",
|
'--add-data', f"{replacements_json}{os.pathsep}data",
|
||||||
'--add-data', f"{replacements_json};data" # Note: using 'data' as the destination folder
|
]
|
||||||
])
|
|
||||||
|
|
||||||
# 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')
|
shutil.rmtree('build')
|
||||||
os.remove(f'{NAME}.spec')
|
os.remove(f'{NAME}.spec')
|
||||||
|
|
||||||
print(f"Build completed successfully. Executable is in {DIST_PATH}/{NAME}.exe")
|
# Notify user where the output is
|
||||||
input("Press Enter to continue...")
|
executable_name = f"{NAME}.exe" if is_windows else NAME
|
||||||
|
print(f"Build completed successfully. Executable is in {DIST_PATH}/{executable_name}")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user