2021-06-21 23:33:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Giving pyinstaller another run
|
|
|
|
rm $(find . -name "*.qmlc")
|
|
|
|
rm $(find . -name "*.pyc")
|
|
|
|
wine python -m pip install -U pyinstaller
|
2021-08-02 20:19:58 +00:00
|
|
|
wine pyinstaller --add-data "logplotter.svg;." --add-data "LogarithmPlotter/qml;qml" --noconsole LogarithmPlotter/logarithmplotter.py --icon=win/logarithmplotter.ico -n logarithmplotter
|