# Maintainer: Luke Shumaker # Maintainer (AUR): Mark Foxwell # Contributor (AUR): Nicolas Martyanoff # Contributor (AUR): Rick Chen # Justification for being in [libre]: is a dependency of libretools pkgname=tokyocabinet pkgver=1.4.48 pkgrel=3 pkgdesc="A modern implementation of DBM" arch=('i686' 'x86_64' 'armv7h') url="https://fallabs.com/tokyocabinet/" license=('LGPL') depends=('zlib' 'bzip2') source=("http://fallabs.com/tokyocabinet/${pkgname}-${pkgver}.tar.gz") md5sums=('fd03df6965f8f56dd5b8518ca43b4f5e') build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr --enable-off64 --enable-fastest make } check() { cd "$srcdir/$pkgname-$pkgver" make check } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir/" install } # vim:set ts=2 sw=2 et: