2021-06-21 23:33:42 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Untested yet
|
|
|
|
rm $(find . -name "*.qmlc")
|
|
|
|
rm $(find . -name "*.pyc")
|
|
|
|
python3 -m pip install -U pyinstaller
|
2021-06-22 16:47:10 +00:00
|
|
|
iconutil -c icns "mac/logarithmplotter.iconset"
|
2021-06-22 16:39:03 +00:00
|
|
|
pyinstaller --add-data "LogarithmPlotter/qml:qml" \
|
2021-06-21 23:33:42 +00:00
|
|
|
--add-data "LICENSE.md:." \
|
|
|
|
--add-data "README.md:." \
|
|
|
|
--exclude-module "FixTk" \
|
|
|
|
--exclude-module "tcl" \
|
|
|
|
--exclude-module "tk" \
|
|
|
|
--exclude-module "_tkinter" \
|
|
|
|
--exclude-module "tkinter" \
|
|
|
|
--exclude-module "Tkinter" \
|
|
|
|
--noconsole \
|
|
|
|
--noconfirm \
|
|
|
|
--icon=mac/logarithmplotter.icns \
|
|
|
|
--osx-bundle-identifier eu.ad5001.logarithmplotter \
|
|
|
|
-n LogarithmPlotter \
|
|
|
|
LogarithmPlotter/__init__.py
|