summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiroshi Hatake2020-07-25 22:29:56 +0900
committerHiroshi Hatake2020-07-25 22:32:12 +0900
commit0456fc6c589d08d46db5ae829200b322de0baf1e (patch)
tree4311ea73725f11b109c676376663b7efe7b206fb
parente0fda062cb71f4182f3eaac0c860282aacd8b62d (diff)
downloadaur-0456fc6c589d08d46db5ae829200b322de0baf1e.tar.gz
groonga 10.0.4-2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a3d7f322cda5..33f102c52fb0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = groonga
pkgdesc = An opensource fulltext search engine.
pkgver = 10.0.4
- pkgrel = 1
+ pkgrel = 2
url = http://groonga.org/
arch = i686
arch = x86_64
@@ -11,7 +11,6 @@ pkgbase = groonga
depends = glib2
depends = libedit
depends = zeromq
- depends = arrow
depends = autoconf-archive
depends = libevent
depends = mecab
@@ -22,6 +21,7 @@ pkgbase = groonga
optdepends = ruby
optdepends = mercurial
optdepends = kytea
+ optdepends = arrow
source = http://packages.groonga.org/source/groonga/groonga-10.0.4.tar.gz
source = groonga-httpd.service
sha1sums = b6e4026303397ad1ab6fe068e8b449b467ad3293
diff --git a/PKGBUILD b/PKGBUILD
index 10110992b3a3..33ad3596c488 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,19 +2,21 @@
pkgname=groonga
pkgver=10.0.4
-pkgrel=1
+pkgrel=2
pkgdesc="An opensource fulltext search engine."
arch=('i686' 'x86_64')
url="http://groonga.org/"
license=('LGPL2')
source=("http://packages.groonga.org/source/groonga/$pkgname-$pkgver.tar.gz"
"groonga-httpd.service")
-depends=('zlib' 'lz4' 'glib2' 'libedit' 'zeromq' 'arrow' 'autoconf-archive'
+depends=('zlib' 'lz4' 'glib2' 'libedit' 'zeromq' 'autoconf-archive'
'libevent' 'mecab' 'mecab-ipadic' 'msgpack-c' 'snowball-c-git')
-optdepends=('cutter-test_framework' 'ruby' 'mercurial' 'kytea')
+optdepends=('cutter-test_framework' 'ruby' 'mercurial' 'kytea' 'arrow')
build() {
# TODO: Enable to build arrow on AArch64/armv7h
+ # TODO: grpc 1.28+ is currently causing issues to build arrow.
+ # Currently, this line should be specifying to disable using arrow.
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr \
--localstatedir=/var \
@@ -23,7 +25,7 @@ build() {
--with-default-encoding=utf8 \
--with-zlib \
--with-lz4 \
- --enable-arrow \
+ --disable-arrow \
--enable-message-pack \
--enable-shared=yes \
--enable-static=yes \