diff options
author | root <root@rshg054.dnsready.net> | 2012-11-07 01:04:45 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-07 01:04:45 -0800 |
commit | a8fff09ba6d0f8b78b43e63541b1254763d4f48e (patch) | |
tree | d5ed9796d5aa31b378f4bfed4482b84008e731fa /community/apvlv | |
parent | 85e0e667660650d70269432a90401d4288776d9d (diff) |
Wed Nov 7 01:04:45 PST 2012
Diffstat (limited to 'community/apvlv')
-rw-r--r-- | community/apvlv/PKGBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/community/apvlv/PKGBUILD b/community/apvlv/PKGBUILD index 23bdcb7a6..a0bca90b3 100644 --- a/community/apvlv/PKGBUILD +++ b/community/apvlv/PKGBUILD @@ -1,23 +1,23 @@ -# $Id: PKGBUILD 64830 2012-02-18 15:59:14Z bpiotrowski $ +# $Id: PKGBUILD 79519 2012-11-06 16:27:50Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> # Contributor: tocer.deng <tocer.deng@gmail.com> pkgname=apvlv -pkgver=0.1.4 +pkgver=0.1.4.20121023 pkgrel=1 -pkgdesc="A PDF Viewer which behaves like Vim" +pkgdesc='A PDF Viewer which behaves like Vim' arch=('i686' 'x86_64') url="http://naihe2010.github.com/apvlv/" license=('GPL') depends=('gtk2' 'cairo' 'poppler-glib' 'djvulibre') makedepends=('cmake' 'libwebkit') -source=("ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz") -md5sums=('5518b842715f1a9e7d3c8d2b7ed16342') +source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.xz) +md5sums=('f222fc4b09b15358eb4e7f996ba810d6') build() { - cd "$srcdir"/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver mkdir -p build cd build @@ -29,7 +29,7 @@ build() { } package() { - cd "$srcdir"/$pkgname-$pkgver/build + cd $srcdir/$pkgname-$pkgver/build - make DESTDIR="$pkgdir" install + make DESTDIR=$pkgdir/ install } |