2021-06-21 23:33:42 +00:00
|
|
|
#!/bin/bash
|
2022-01-26 18:48:46 +00:00
|
|
|
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.."
|
|
|
|
|
2021-06-21 23:33:42 +00:00
|
|
|
# Giving pyinstaller another run
|
|
|
|
rm $(find . -name "*.qmlc")
|
2022-01-24 18:27:02 +00:00
|
|
|
rm -rf $(find . -name "*.pyc")
|
2021-06-21 23:33:42 +00:00
|
|
|
wine python -m pip install -U pyinstaller
|
2022-01-20 17:19:36 +00:00
|
|
|
|
2022-01-24 15:16:58 +00:00
|
|
|
# Building translations
|
2022-01-20 17:19:36 +00:00
|
|
|
cd "LogarithmPlotter/i18n/"
|
|
|
|
bash release.sh
|
|
|
|
cd ../../
|
|
|
|
|
|
|
|
wine pyinstaller --add-data "logplotter.svg;." --add-data "LogarithmPlotter/qml;qml" --add-data "LogarithmPlotter/i18n;i18n" --noconsole LogarithmPlotter/logarithmplotter.py --icon=win/logarithmplotter.ico -n logarithmplotter
|