Skip to content

Commit

Permalink
Merge pull request #5 from zevlee/update-build-scripts
Browse files Browse the repository at this point in the history
Update build scripts
  • Loading branch information
zevlee authored Jul 29, 2022
2 parents 0d98c52 + f011924 commit 670ed80
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion linux/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ echo "Setting up virtual environment..."
python3 -m venv --system-site-packages venv
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r ../requirements.txt
PYINSTALLER_COMPILE_BOOTLOADER=1 PYI_STATIC_ZLIB=1 python3 -m pip install -r ../requirements.txt

echo "Running pyinstaller..."

Expand Down
2 changes: 1 addition & 1 deletion macos/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo "Setting up virtual environment..."
/usr/local/bin/python3 -m venv --system-site-packages venv
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r ../requirements.txt
PYINSTALLER_COMPILE_BOOTLOADER=1 PYI_STATIC_ZLIB=1 python3 -m pip install -r ../requirements.txt

echo "Preparing app..."

Expand Down
2 changes: 1 addition & 1 deletion windows/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

# This script is meant to be run through MinGW

pacman -S --noconfirm mingw-w64-x86_64-gtk4 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python3-gobject mingw-w64-x86_64-libadwaita mingw-w64-x86_64-nsis mingw-w64-x86_64-nsis-nsisunz zip unzip
pacman -S --noconfirm mingw-w64-x86_64-gtk4 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python3-gobject mingw-w64-x86_64-libadwaita mingw-w64-x86_64-nsis mingw-w64-x86_64-nsis-nsisunz mingw-w64-x86_64-gcc zip unzip

echo "Done"
2 changes: 1 addition & 1 deletion windows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ echo "Setting up virtual environment..."
python3 -m venv --system-site-packages venv
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r ../requirements.txt
PYINSTALLER_COMPILE_BOOTLOADER=1 PYI_STATIC_ZLIB=1 python3 -m pip install -r ../requirements.txt

echo "Running pyinstaller..."

Expand Down

0 comments on commit 670ed80

Please sign in to comment.