diff options
Diffstat (limited to 'community-testing/zathura-djvu/PKGBUILD')
-rw-r--r-- | community-testing/zathura-djvu/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community-testing/zathura-djvu/PKGBUILD b/community-testing/zathura-djvu/PKGBUILD new file mode 100644 index 000000000..be797feb3 --- /dev/null +++ b/community-testing/zathura-djvu/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 75779 2012-08-31 00:57:33Z dwallace $ +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: karnath <karnathtorjian@gmail.com> + +pkgname=zathura-djvu +pkgver=0.2.1 +pkgrel=1 +pkgdesc="Adds DjVu support to zathura by using the djvulibre library" +arch=('i686' 'x86_64') +url="https://pwmt.org/projects/zathura/plugins/zathura-djvu/" +license=('custom') +depends=('djvulibre' 'zathura') +source=("https://pwmt.org/projects/zathura/plugins/download/zathura-djvu-$pkgver.tar.gz") +md5sums=('c3525b43b74bb0777a2b3561f7dcde06') + +build(){ + cd "${srcdir}/$pkgname-$pkgver" + make +} +package(){ + cd "${srcdir}/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + |