diff options
Diffstat (limited to 'community/zathura/PKGBUILD')
-rw-r--r-- | community/zathura/PKGBUILD | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/community/zathura/PKGBUILD b/community/zathura/PKGBUILD index f7b59df10..ee0c7a48e 100644 --- a/community/zathura/PKGBUILD +++ b/community/zathura/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 43267 2011-03-24 12:25:34Z spupykin $ +# $Id: PKGBUILD 51680 2011-07-13 07:32:38Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: ML <neldoreth> pkgname=zathura -pkgver=0.0.8.3 +pkgver=0.0.8.4 pkgrel=1 pkgdesc="a PDF viewer" arch=('i686' 'x86_64') @@ -13,19 +13,18 @@ depends=('poppler-glib' 'gtk2' 'cairo') install=zathura.install DLAGENTS=('http::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u' 'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u') -source=(https://pwmt.org/download/zathura-$pkgver.tar.gz - zathura.desktop - zathura-poppler-0.16.patch) -md5sums=('95b1d02593e7055f08da3825ad54954d' - '53da4968621934e7d9812380a3a37ee1' - 'fa9f43b1a785743b4f9b840d1f234bae') +source=(https://pwmt.org/download/zathura-$pkgver.tar.gz) +md5sums=('e3a7f82401059e591ed549d615f53ddd') build() { cd $srcdir/zathura-$pkgver -# patch -Np1 -i $srcdir/zathura-poppler-0.16.patch make +} + +package() { + cd $srcdir/zathura-$pkgver install -D -m775 zathura "$pkgdir/usr/bin/zathura" install -D -m664 zathura.1 "$pkgdir/usr/share/man/man1/zathura.1" install -D -m664 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -D -m664 $srcdir/zathura.desktop "$pkgdir/usr/share/applications/zathura.desktop" + install -D -m664 zathura.desktop "$pkgdir/usr/share/applications/zathura.desktop" } |