-
Notifications
You must be signed in to change notification settings - Fork 8
/
build-with-pyinstaller.sh
executable file
·31 lines (25 loc) · 1.18 KB
/
build-with-pyinstaller.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
# Bash script to build isolyzer using PyInstaller
# Script base name (i.e. script name minus .py extension)
scriptBaseName=isolyzer
# First check for PyInstaller
command -v pyinstaller >/dev/null 2>&1 || {
echo >&2 "PyInstaller is required to build the executable.";
echo >&2 "Please install PyInstaller with:";
echo >&2 " (sudo) pip install pyinstaller"
exit 1;
}
# PyInstaller cannot be run as root
originalUserId=$(id -u);
userId=$originalUserId
if [ $originalUserId == 0 ]
then
uname=$(getent passwd 1000 | cut -d: -f1)
sudo -u $uname "pyi-makespec --strip --onefile --paths=$scriptBaseName --name=$scriptBaseName --specpath=pyi-build ./cli.py"
sudo -u $uname "pyinstaller --strip --clean --paths=$scriptBaseName --distpath=pyi-build/dist --workpath=pyi-build/build ./pyi-build/$scriptBaseName.spec"
else
# So making stripped binaries for debian packaging
pyi-makespec --strip --onefile --paths=$scriptBaseName --name=$scriptBaseName --specpath=pyi-build ./cli.py
pyinstaller --strip --clean --paths=$scriptBaseName --distpath=pyi-build/dist --workpath=pyi-build/build ./pyi-build/$scriptBaseName.spec
fi
./pyi-build/dist/$scriptBaseName --version;