diff options
author | root <root@rshg054.dnsready.net> | 2013-10-26 01:22:45 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-26 01:22:45 -0700 |
commit | 24152c3ea77087edccf017c13d44904a75799ff7 (patch) | |
tree | 65e25106816e5071dd5b2edc2270e0138c23dc7c /community/kyotocabinet | |
parent | 5a3821aec094b38a412cf5e6997c08b6428d6f77 (diff) |
Sat Oct 26 01:21:13 PDT 2013
Diffstat (limited to 'community/kyotocabinet')
-rw-r--r-- | community/kyotocabinet/PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/community/kyotocabinet/PKGBUILD b/community/kyotocabinet/PKGBUILD index bb08be242..b7eb075d0 100644 --- a/community/kyotocabinet/PKGBUILD +++ b/community/kyotocabinet/PKGBUILD @@ -1,28 +1,27 @@ -# $Id: PKGBUILD 90164 2013-05-07 16:07:18Z fyan $ +# $Id: PKGBUILD 99150 2013-10-25 05:03:47Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Alexander Duscheleit <jinks@archlinux.us> # Contributor: Joaquim Pedro (osmano807) <osmano807@gmail.com> pkgname=kyotocabinet pkgver=1.2.76 -pkgrel=3 +pkgrel=4 pkgdesc="a modern implementation of DBM in C++" arch=('i686' 'x86_64') url="http://fallabs.com/kyotocabinet" license=('LGPL3') -makedepends=('gcc' 'make' 'pkgconfig' 'zlib') depends=('zlib' 'gcc-libs') source=("http://fallabs.com/${pkgname}/pkg/${pkgname}-${pkgver}.tar.gz") build() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver ./configure --prefix=/usr --disable-opt make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make install DESTDIR="$pkgdir/" } |