summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2015-08-12 21:06:52 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2015-08-12 21:07:26 -0300
commit882293568b923a6babb537db195922794c68ad06 (patch)
tree13e49833beb98ffa0f779e12fbc55674d8016ff8
parent55bb627db8753f7b56d66efeaa8f6db5d1617ae6 (diff)
tokyocabinet: support for armv6h
-rw-r--r--libre/tokyocabinet/PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/libre/tokyocabinet/PKGBUILD b/libre/tokyocabinet/PKGBUILD
index 2ac531c2e..667c99da5 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' 'mips64el')
+arch=('i686' 'x86_64' 'mips64el' 'armv6h')
url="http://fallabs.com/tokyocabinet/"
license=('LGPL')
makedepends=('gcc>=3.1' 'make' 'pkgconfig')
@@ -17,6 +17,7 @@ build() {
cd "$srcdir/$pkgname-$pkgver"
[ "$CARCH" != "mips64el" ] && extra=--enable-fastest
+ [ "$CARCH" != "armv6h" ] && sed -i "s/-minline-all-stringops//g" configure
./configure --prefix=/usr --enable-off64 $extra
make