1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00
aports/community/py3-qtawesome/APKBUILD
2023-03-10 21:15:31 +00:00

33 lines
1 KiB
Text

# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
pkgname=py3-qtawesome
_pkgorig=qtawesome
pkgver=1.2.3
pkgrel=0
pkgdesc="Iconic fonts in PyQt and PySide applications"
url="https://github.com/spyder-ide/qtawesome"
arch="noarch"
license="MIT"
depends="python3 py3-qtpy"
checkdepends="python3-dev py3-pytest py3-pytest-cov py3-pytest-qt py3-qt5 xvfb-run"
makedepends="py3-setuptools py3-wheel"
source="https://github.com/spyder-ide/qtawesome/archive/v$pkgver/$_pkgorig-$pkgver.tar.gz
no-tests.patch"
builddir="$srcdir/qtawesome-$pkgver"
build() {
python3 setup.py build
}
check() {
xvfb-run -a python3 -m pytest
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
f8299b41d5b674ec4ea2c0c3f8ea38f8bc14612fdceea3912e34916692c879b9420848edabcd165773fb1637e3ccb2b1857dfa26e2d514c7126b4d1b73b5b588 qtawesome-1.2.3.tar.gz
33cac839842a89d5680ee555526cec9177b20ba5227d9934f44673b481c688039c22bf3c8ce8fd18ef85d05143ea5c7f87eaacbc4861e3a9cbb69ed068b14b9f no-tests.patch
"