Files
ports/core/python3-pyqt5/spkgbuild
2021-02-05 13:11:33 +08:00

22 lines
544 B
Plaintext

# description : A set of Python 3.x bindings for the Qt5 toolkit
# depends : python3-sip qtwebengine qt5-webkit python3-dbus python2-enum34
name=python3-pyqt5
version=5.15.2
release=1
source="https://pypi.python.org/packages/source/P/PyQt5/PyQt5-$version.tar.gz"
build() {
cd PyQt5-$version
python3 configure.py \
--confirm-license \
--no-sip-files \
--qsci-api \
-q /usr/bin/qmake
make
install -d $PKG/usr/share/sip/PyQt5
cp -a sip/* $PKG/usr/share/sip/PyQt5
make DESTDIR="$PKG" INSTALL_ROOT="$PKG" install -j1
}