mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
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
31 lines
1 KiB
Text
31 lines
1 KiB
Text
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-pyqt-feedback-flow
|
|
_pkgorig=pyqt-feedback-flow
|
|
pkgver=0.1.6
|
|
pkgrel=2
|
|
pkgdesc="Show feedback in toast-like notifications"
|
|
url="https://github.com/firefly-cpp/pyqt-feedback-flow"
|
|
arch="noarch !armhf" # failed build - missing dep
|
|
license="MIT"
|
|
depends="python3 py3-emoji py3-qt5"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/p/pyqt-feedback-flow/pyqt-feedback-flow-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgorig-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
# no tests provided by the upstream; use smoke tests
|
|
check() {
|
|
PYTHONPATH=build/lib python3 -c "from pyqt_feedback_flow import *"
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
8c195ae5c669f82b7f68322d1bb37c236b7eb8722d38c300b6f0d180c753bc8d0bc487402c3796f4ba32a19ace926e77cc28798b13011d72a7db815db6477932 py3-pyqt-feedback-flow-0.1.6.tar.gz
|
|
"
|