Here is a bash script I made to automate building my development sysroot on macOS. Edit to your liking. #!/bin/sh set -e export QT_VERSION=5.14.0-patched export PYTHON_VERSION=3.6.4-patched export SIP_VERSION=4.19.19 export PYQT_VERSION=5.13.1 export PYQT_PURCHASING_VERSION=5.13.0-patched export QSCINTILLA_VERSION=2.11.2 if [ `hostname` = "vedanamedia" ]; then # production export QT_CONFIG_OPTS="-release -no-gui -no-feature-network -no-feature-xml -skip qtdeclarative" else export QT_CONFIG_OPTS="-debug -no-framework" [...]
The post PyQt5 development sysroot build script appeared first on Vedanā Media.