BAPSicle/build/build-macos.sh

31 lines
695 B
Bash
Raw Normal View History

#!/bin/bash
2022-03-19 17:49:45 +00:00
set -x
cd "$(dirname "$0")"
2021-04-27 20:48:17 +00:00
# Get the git commit / branch and write it into build.py.
2021-04-11 18:02:19 +00:00
build_commit="$(git rev-parse --short HEAD)"
2021-04-27 20:48:17 +00:00
build_branch="$(git branch --show-current)"
echo "BUILD: str = \"$build_commit\"" > ../build.py
2021-04-27 20:48:17 +00:00
echo "BRANCH: str = \"$build_branch\"" >> ../build.py
2021-04-11 18:02:19 +00:00
2024-03-29 16:32:06 +00:00
poetry install
2024-03-29 16:38:10 +00:00
poetry run python3 ./generate-build-exe-config.py
2024-03-29 16:38:10 +00:00
poetry run python3 ./build-exe.py
bash ./build-exe-pyinstaller-command.sh
rm ./*.spec
cd ../
2024-03-29 16:38:10 +00:00
poetry run python3 build/generate-platypus-config.py
cd build
brew install platypus
platypus --load-profile ./BAPSicle.platypus --overwrite ./output/BAPSicle.app
chmod +x output/BAPSicle.app/Contents/Resources/BAPSicle
rm ../build.py