diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 13:25:19 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 13:25:19 -0300 |
commit | 5199b54c05b43e54c7e5b28881858613917d5818 (patch) | |
tree | 5a20a7313ae71361d084d3de7276cb52ec14bd92 | |
parent | b55fb78cf550d69812dcb70d7fcbc9f4a4bba114 (diff) |
Ported Tokyo*
-rw-r--r-- | social/tokyocabinet/PKGBUILD | 11 | ||||
-rwxr-xr-x | social/tokyotyrant/PKGBUILD | 2 |
2 files changed, 8 insertions, 5 deletions
diff --git a/social/tokyocabinet/PKGBUILD b/social/tokyocabinet/PKGBUILD index 6e9b7969d..783aa254c 100644 --- a/social/tokyocabinet/PKGBUILD +++ b/social/tokyocabinet/PKGBUILD @@ -2,20 +2,22 @@ # Contributor: Nicolas Martyanoff <khaelin@gmail.com> pkgname=tokyocabinet -pkgver=1.4.47 +pkgver=1.4.48 pkgrel=1 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') depends=('zlib' 'bzip2') source=("http://fallabs.com/tokyocabinet/${pkgname}-${pkgver}.tar.gz") -md5sums=('3d94fe2aebf5d9ff0478ed895bc46fc9') build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --enable-off64 --enable-fastest + + [ "$CARCH" != "mips64el" ] && extra=--enable-fastest + + ./configure --prefix=/usr --enable-off64 $extra make } @@ -31,3 +33,4 @@ package() { } # vim:set ts=2 sw=2 et: +md5sums=('fd03df6965f8f56dd5b8518ca43b4f5e') diff --git a/social/tokyotyrant/PKGBUILD b/social/tokyotyrant/PKGBUILD index 74da4570c..245082c61 100755 --- a/social/tokyotyrant/PKGBUILD +++ b/social/tokyotyrant/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tokyotyrant pkgver=1.1.41 pkgrel=2 pkgdesc="Network interface to TokyoCabinet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fallabs.com" license=('LGPL') makedepends=('gcc>=3.1' 'make' 'pkgconfig') |