summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-12-04 03:04:36 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2012-12-04 03:04:36 -0200
commita469e33abb1f02a007e7f119ac0126ce14e1e6a8 (patch)
treec0e706944343a3b9b37baeaf14993abec3da1099 /libre
parent8ca8e3bf01034644a1487fd47d02c15aae3d5af9 (diff)
parent889356fb096ccf92488629067f8642969c91762f (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre')
-rw-r--r--[-rwxr-xr-x]libre/tokyocabinet/PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/libre/tokyocabinet/PKGBUILD b/libre/tokyocabinet/PKGBUILD
index 7eb52ed6e..1add6c535 100755..100644
--- a/libre/tokyocabinet/PKGBUILD
+++ b/libre/tokyocabinet/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=tokyocabinet
pkgver=1.4.48
pkgrel=2
pkgdesc="a modern implementation of DBM"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'mips64el')
url="http://fallabs.com/tokyocabinet/"
license=('LGPL')
makedepends=('gcc>=3.1' 'make' 'pkgconfig')
@@ -15,7 +15,10 @@ md5sums=('fd03df6965f8f56dd5b8518ca43b4f5e')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --enable-off64 --enable-fastest
+
+ [ "$CARCH" != "mips64el" ] && extra=--enable-fastest
+
+ ./configure --prefix=/usr --enable-off64 $extra
make
}