diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-08-12 21:10:29 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-08-12 21:10:29 -0300 |
commit | c7adcc0a20057e56684cb436688cbf7e9002c3e4 (patch) | |
tree | 7d07efb1b96264da78a21af6376b7a05a8a4441e | |
parent | 882293568b923a6babb537db195922794c68ad06 (diff) | |
download | abslibre-c7adcc0a20057e56684cb436688cbf7e9002c3e4.tar.gz abslibre-c7adcc0a20057e56684cb436688cbf7e9002c3e4.tar.bz2 abslibre-c7adcc0a20057e56684cb436688cbf7e9002c3e4.zip |
tokyo-cabinet: support for armv7h
-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 667c99da5..02cf19da8 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' 'armv6h') +arch=('i686' 'x86_64' 'mips64el' 'armv6h' 'armv7h') url="http://fallabs.com/tokyocabinet/" license=('LGPL') makedepends=('gcc>=3.1' 'make' 'pkgconfig') @@ -18,6 +18,7 @@ build() { [ "$CARCH" != "mips64el" ] && extra=--enable-fastest [ "$CARCH" != "armv6h" ] && sed -i "s/-minline-all-stringops//g" configure + [ "$CARCH" != "armv7h" ] && sed -i "s/-minline-all-stringops//g" configure ./configure --prefix=/usr --enable-off64 $extra make |