2020-10-31 03:04:14 +00:00
|
|
|
#!/bin/bash
|
2020-11-01 00:38:46 +00:00
|
|
|
cd "$(dirname "$0")"
|
2020-10-31 03:04:14 +00:00
|
|
|
|
2021-04-11 18:02:19 +00:00
|
|
|
build_commit="$(git rev-parse --short HEAD)"
|
2021-04-11 19:27:46 +00:00
|
|
|
echo "BUILD: str = \"$build_commit\"" > ../build.py
|
2021-04-11 18:02:19 +00:00
|
|
|
sed -i '' -e "s/BUILD_COMMIT/$build_commit/" "../config.py"
|
|
|
|
|
|
|
|
python3 -m venv ../venv
|
|
|
|
source ../venv/bin/activate
|
|
|
|
|
2020-10-31 03:04:14 +00:00
|
|
|
pip3 install -r requirements.txt
|
|
|
|
pip3 install -r requirements-macos.txt
|
|
|
|
pip3 install -e ..\
|
|
|
|
|
|
|
|
python3 ./generate-build-exe-config.py
|
|
|
|
|
|
|
|
python3 ./build-exe.py
|
|
|
|
|
|
|
|
bash ./build-exe-pyinstaller-command.sh
|
2020-11-01 00:38:46 +00:00
|
|
|
|
|
|
|
rm ./*.spec
|
|
|
|
|
|
|
|
brew install platypus
|
|
|
|
|
|
|
|
platypus --load-profile ./BAPSicle.platypus --overwrite ./output/BAPSicle.app
|