updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / kyotocabinet-perl / PKGBUILD
blobeb1d309adab68a484745ceb817310652e67d8619
1 # Maintainer: Alexander Duscheleit <jinks@archlinux.us>
2 pkgname=kyotocabinet-perl
3 pkgver=1.18
4 pkgrel=1
5 pkgdesc="Perl bindings for Kyoto Cabinet."
6 arch=('i686' 'x86_64')
7 url="http://fallabs.com/kyotocabinet/"
8 license=('GPL3')
9 depends=('kyotocabinet>=1.2.34' 'perl')
10 source=(http://fallabs.com/kyotocabinet/perlpkg/$pkgname-$pkgver.tar.gz)
11 sha256sums=('6bb70e88457481b27df0a14a997897010006c6b38a5b68de48b1f1f737ec1630')
13 build() {
14   cd "$srcdir/$pkgname-$pkgver"
16   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
17   make
20 package() {
21   cd "$srcdir/$pkgname-$pkgver"
23   make install DESTDIR="$pkgdir/"
26 # vim:set ts=2 sw=2 et: