# Contributor: Angel Velasquez # Contributor: Jan de Groot pkgbase=python-cairo pkgname=(python-cairo python-cairo-docs) pkgver=1.26.0 pkgrel=1 pkgdesc="Python bindings for the cairo graphics library" url="https://pycairo.readthedocs.io/en/latest/" arch=(x86_64) license=(LGPL2.1 MPL) depends=(cairo python) makedepends=(meson python-sphinx python-sphinx_rtd_theme) checkdepends=(python-pytest) source=(https://github.com/pygobject/pycairo/releases/download/v$pkgver/pycairo-$pkgver.tar.gz{,.sig}) sha256sums=('2dddd0a874fbddb21e14acd9b955881ee1dc6e63b9c549a192d613a907f9cbeb' 'SKIP') validpgpkeys=(0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC) # Christoph Reiter build() { arch-meson pycairo-$pkgver build meson compile -C build } check() { meson test -C build --print-errorlogs } package_python-cairo() { meson install -C build --destdir="$pkgdir" # compile Python bytecode python -m compileall -d /usr/lib "$pkgdir/usr/lib" python -O -m compileall -d /usr/lib "$pkgdir/usr/lib" } package_python-cairo-docs() { pkgdesc="Developer documentation for Pycairo" depends=() python -m sphinx -b html pycairo-$pkgver/docs "$pkgdir/usr/share/doc/pycairo/html" rm -r "$pkgdir/usr/share/doc/pycairo/html/.doctrees" } # vim:set sw=2 sts=-1 et: