1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 20:25:17 +03:00
aports/testing/py3-qt.py/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

29 lines
830 B
Text

# Contributor: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
pkgname=py3-qt.py
pkgver=1.3.7
pkgrel=1
pkgdesc="Minimal Python 2 & 3 shim around all Qt bindings"
url="https://github.com/mottosso/Qt.py"
arch="noarch !armhf" # no py3-qt5 on armhf
license="MIT"
depends="python3 py3-qt5 py3-setuptools"
checkdepends="py3-nose py3-six"
source="$pkgname-$pkgver.tar.gz::https://github.com/mottosso/Qt.py/archive/$pkgver.tar.gz"
builddir="$srcdir/Qt.py-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 tests.py
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
4c4fdeb8fb44d3309ebcfc9278c50ac1f94d723ea5d0f7b074f625d718d1777efcd3a5c775639c2a545273b8d49c1587fdc3618341a28b04c4b82321a9a6632b py3-qt.py-1.3.7.tar.gz
"