mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
37 lines
1 KiB
Text
37 lines
1 KiB
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py3-cairo
|
|
pkgver=1.27.0
|
|
pkgrel=0
|
|
pkgdesc="Python3 bindings for the cairo graphics library"
|
|
url="http://cairographics.org/pycairo/"
|
|
arch="all"
|
|
license="LGPL-2.0-or-later"
|
|
makedepends="python3-dev cairo-dev meson"
|
|
checkdepends="py3-pytest"
|
|
subpackages="$pkgname-pyc $pkgname-dev"
|
|
source="https://github.com/pygobject/pycairo/releases/download/v$pkgver/pycairo-$pkgver.tar.gz"
|
|
builddir="$srcdir"/pycairo-$pkgver
|
|
|
|
replaces="py-cairo" # Backwards compatibility
|
|
provides="py-cairo=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-Dtests="$(want_check && echo true || echo false)" \
|
|
. output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --print-errorlogs --no-rebuild -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
python3 -m compileall "$pkgdir"/usr/lib
|
|
}
|
|
|
|
sha512sums="
|
|
1b077917b1d99262da1c1d2ff85ae841dd0ff715925a5a20032162aa876576d966fc6b30c154343cc45f104cce243887de9b5f14af1e15775cb71b6c11e553a6 pycairo-1.27.0.tar.gz
|
|
"
|