Date: Saturday, February 1, 2020 @ 12:59:58 Author: demize Revision: 561024
archrelease: copy trunk to staging-x86_64 Added: zathura-djvu/repos/staging-x86_64/ zathura-djvu/repos/staging-x86_64/PKGBUILD (from rev 561023, zathura-djvu/trunk/PKGBUILD) ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Copied: zathura-djvu/repos/staging-x86_64/PKGBUILD (from rev 561023, zathura-djvu/trunk/PKGBUILD) =================================================================== --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2020-02-01 12:59:58 UTC (rev 561024) @@ -0,0 +1,32 @@ +# Maintainer: Johannes Löthberg <johan...@kyriasis.com> +# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com> +# Contributor: Sergej Pupykin <pupykin.s+a...@gmail.com> +# Contributor: karnath <karnathtorj...@gmail.com> + +pkgname=zathura-djvu +pkgver=0.2.9 +pkgrel=1 + +pkgdesc="DjVu support for Zathura" +url="https://pwmt.org/projects/zathura-djvu/" +arch=('x86_64') +license=('custom') + +depends=('djvulibre' 'zathura' 'desktop-file-utils') +makedepends=('meson' 'ninja') + +source=(zathura-djvu-$pkgver.tar.gz::https://github.com/pwmt/zathura-djvu/archive/$pkgver.tar.gz) + +sha1sums=('a0b95991138729fd918c5ea2c3a5a8193696fe65') + +build(){ + cd zathura-djvu-$pkgver + arch-meson build + ninja -C build +} + +package(){ + DESTDIR="$pkgdir" ninja -C zathura-djvu-$pkgver/build install + install -Dm0644 zathura-djvu-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} +