LogarithmPlotter/build-wine.sh

13 lines
452 B
Bash
Raw Normal View History

#!/bin/bash
# Giving pyinstaller another run
rm $(find . -name "*.qmlc")
2022-01-24 18:27:02 +00:00
rm -rf $(find . -name "*.pyc")
wine python -m pip install -U pyinstaller
2022-01-24 15:16:58 +00:00
# Building translations
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