diff options
Diffstat (limited to 'libre/tokyocabinet/PKGBUILD')
-rwxr-xr-x | libre/tokyocabinet/PKGBUILD | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libre/tokyocabinet/PKGBUILD b/libre/tokyocabinet/PKGBUILD deleted file mode 100755 index 1add6c535..000000000 --- a/libre/tokyocabinet/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: Mark Foxwell <fastfret79@archlinux.org.uk> -# Contributor: Nicolas Martyanoff <khaelin@gmail.com> - -pkgname=tokyocabinet -pkgver=1.4.48 -pkgrel=2 -pkgdesc="a modern implementation of DBM" -arch=('i686' 'x86_64' 'mips64el') -url="http://fallabs.com/tokyocabinet/" -license=('LGPL') -makedepends=('gcc>=3.1' 'make' 'pkgconfig') -depends=('zlib' 'bzip2') -source=("http://fallabs.com/tokyocabinet/${pkgname}-${pkgver}.tar.gz") -md5sums=('fd03df6965f8f56dd5b8518ca43b4f5e') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - [ "$CARCH" != "mips64el" ] && extra=--enable-fastest - - ./configure --prefix=/usr --enable-off64 $extra - make -} - -# uncomment check routine if needed (can take ~5mins to run check) -check() { - cd "$srcdir/$pkgname-$pkgver" - make -k check -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: |