summaryrefslogtreecommitdiff
path: root/social
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-12-03 04:49:22 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-12-03 04:49:22 -0200
commita410436d32ff8891eca5fba302df80eddde1be39 (patch)
tree0c9cfb3eb62341b6959ffeba2854e4db830bc41c /social
parentcf59b9ce592d6954eaf31050f5d923d298e67162 (diff)
putting tokyocabinet in [libre] repo
Diffstat (limited to 'social')
-rwxr-xr-xsocial/tokyocabinet/PKGBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/social/tokyocabinet/PKGBUILD b/social/tokyocabinet/PKGBUILD
deleted file mode 100755
index 7eb52ed6e..000000000
--- a/social/tokyocabinet/PKGBUILD
+++ /dev/null
@@ -1,33 +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')
-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"
- ./configure --prefix=/usr --enable-off64 --enable-fastest
- 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: