Files
ports/extra/python3-pyqt5/spkgbuild
2019-05-13 00:11:49 +08:00

23 lines
613 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.12.1
release=1
source=(https://www.riverbankcomputing.com/static/Downloads/PyQt5/$version/PyQt5_gpl-$version.tar.gz)
md5sum=(67508b652098d2e05c4c2b5baeb170cc)
build() {
cd PyQt5_gpl-$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
}