diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-08-12 21:06:52 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-08-12 21:07:26 -0300 |
commit | 882293568b923a6babb537db195922794c68ad06 (patch) | |
tree | 13e49833beb98ffa0f779e12fbc55674d8016ff8 /libre/tokyocabinet/PKGBUILD | |
parent | 55bb627db8753f7b56d66efeaa8f6db5d1617ae6 (diff) | |
download | abslibre-882293568b923a6babb537db195922794c68ad06.tar.gz abslibre-882293568b923a6babb537db195922794c68ad06.tar.bz2 abslibre-882293568b923a6babb537db195922794c68ad06.zip |
tokyocabinet: support for armv6h
Diffstat (limited to 'libre/tokyocabinet/PKGBUILD')
-rw-r--r-- | libre/tokyocabinet/PKGBUILD | 3 |
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 |