mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
33 lines
1 KiB
Text
33 lines
1 KiB
Text
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=py3-qtwebengine
|
|
pkgver=5.15.2
|
|
pkgrel=2
|
|
pkgdesc="Python 3 bindings for QtWebEngine"
|
|
url="https://www.riverbankcomputing.com/software/pyqtwebengine/intro"
|
|
# mips64, ppc64le and s390x are not supported
|
|
# armhf blocked by py3-qt5 -> qt5-qtdeclarative
|
|
# riscv64 blocked by qt5-qtwebengine
|
|
arch="all !ppc64le !s390x !armhf !mips64 !riscv64"
|
|
license="GPL-2.0-or-later"
|
|
depends="python3"
|
|
makedepends="python3-dev py3-qt5 qt5-qtwebengine-dev py-sip-dev"
|
|
source="https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$pkgver.tar.gz"
|
|
builddir="$srcdir"/PyQtWebEngine-"$pkgver"
|
|
|
|
build() {
|
|
python3 configure.py \
|
|
--qmake /usr/lib/qt5/bin/qmake \
|
|
--sip /usr/bin/sip \
|
|
--sipdir /usr/share/sip/PyQt5
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make -j1 DESTDIR="$pkgdir" INSTALL_ROOT="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="7e6d95833b1a9e5bb5275eff01e1923419da35d13862fc4cbb231cbf950ed45e628bc7e161b0b6b66c718ee439a1a8e66dd754cee9adcdf69ab1b8ffab58901e PyQtWebEngine-5.15.2.tar.gz"
|