mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-07 18:00:25 +00:00
22 lines
544 B
Plaintext
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
|
|
}
|