mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 10:15:12 +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
32 lines
1 KiB
Text
32 lines
1 KiB
Text
# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
|
|
# Maintainer:
|
|
pkgname=py3-notify2
|
|
pkgver=0.3.1
|
|
pkgrel=4
|
|
pkgdesc="Python interface to DBus notifications"
|
|
url="https://pypi.org/project/notify2/"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3 py3-dbus py3-gobject3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="xvfb-run dunst dbus"
|
|
source="https://files.pythonhosted.org/packages/source/n/notify2/notify2-$pkgver.tar.gz
|
|
test-wrapper.sh"
|
|
builddir="$srcdir/notify2-$pkgver"
|
|
options="!check" # fail due to some display error
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
dbus-run-session xvfb-run \
|
|
sh "$srcdir"/test-wrapper.sh
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="0b69a64e0a7e4955ee767c975db92c5c60d28c0e54f77498cfb98390771a8f536631fc34e42b5c46c138dfa1054b5516a0809b8e3b0cb9237a39825ddb827109 notify2-0.3.1.tar.gz
|
|
fd28280cbe7ec98c53cd898b7ebe843f1df2a953ce7e7e0d6abf50f66ca52481095338858439dec61a660a84cffe8fda4122afbc7a73da24e66408891c63c79a test-wrapper.sh"
|