104 lines
3.2 KiB
Ruby
104 lines
3.2 KiB
Ruby
class Groonga < Formula
|
|
desc "Fulltext search engine and column store"
|
|
homepage "http://groonga.org/"
|
|
url "http://packages.groonga.org/source/groonga/groonga-6.0.0.tar.gz"
|
|
sha256 "a14c93240dcf749eb583087988703b72dada4a06ab3f6f2e985a3fe3828b4f6c"
|
|
|
|
bottle do
|
|
sha256 "9ac07ea19fc045b6415e094a9b7296f4cd61288a938f07a630f5f6336b70a4fc" => :el_capitan
|
|
sha256 "c6fc0d63c17ada91e9c7ac530dd5c2d68a8fc4e8173b1a2db22d12876fa958e3" => :yosemite
|
|
sha256 "54aa53e214ef43861b5990f78d6ee127359a2d12c8c9ea8c60fd57e791c8820a" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/groonga/groonga.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option "with-benchmark", "With benchmark program for developer use"
|
|
option "with-suggest-plugin", "With suggest plugin for suggesting"
|
|
|
|
deprecated_option "enable-benchmark" => "with-benchmark"
|
|
|
|
resource "groonga-normalizer-mysql" do
|
|
url "http://packages.groonga.org/source/groonga-normalizer-mysql/groonga-normalizer-mysql-1.1.0.tar.gz"
|
|
sha256 "525daffdb999b647ce87328ec2e94c004ab59803b00a71ce1afd0b5dfd167116"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pcre"
|
|
depends_on "msgpack"
|
|
depends_on "mecab" => :optional
|
|
depends_on "lz4" => :optional
|
|
depends_on "openssl"
|
|
depends_on "mecab-ipadic" if build.with? "mecab"
|
|
depends_on "glib" if build.with? "benchmark"
|
|
|
|
if build.with? "suggest-plugin"
|
|
depends_on "libevent"
|
|
depends_on "zeromq"
|
|
end
|
|
|
|
link_overwrite "lib/groonga/plugins/normalizers/"
|
|
link_overwrite "share/doc/groonga-normalizer-mysql/"
|
|
link_overwrite "lib/pkgconfig/groonga-normalizer-mysql.pc"
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--with-zlib
|
|
--with-ssl
|
|
--enable-mruby
|
|
--without-libstemmer
|
|
]
|
|
|
|
# ZeroMQ is an optional dependency that will be auto-detected unless we disable it
|
|
if build.with? "suggest-plugin"
|
|
args << "--enable-zeromq"
|
|
else
|
|
args << "--disable-zeromq"
|
|
end
|
|
|
|
args << "--enable-benchmark" if build.with? "benchmark"
|
|
args << "--with-mecab" if build.with? "mecab"
|
|
args << "--with-lz4" if build.with? "lz4"
|
|
|
|
if build.head?
|
|
args << "--with-ruby"
|
|
system "./autogen.sh"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
|
|
resource("groonga-normalizer-mysql").stage do
|
|
ENV.prepend_path "PATH", bin
|
|
ENV.prepend_path "PKG_CONFIG_PATH", lib/"pkgconfig"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
IO.popen("#{bin}/groonga -n #{testpath}/test.db", "r+") {|io|
|
|
io.puts("table_create --name TestTable --flags TABLE_HASH_KEY --key_type ShortText")
|
|
sleep 2
|
|
io.puts("shutdown")
|
|
# expected returned result is like this:
|
|
# [[0,1447502555.38667,0.000824928283691406],true]\n
|
|
assert_match(/\[\[0,\d+.\d+,\d+.\d+\],true\]/, io.read)
|
|
}
|
|
|
|
IO.popen("#{bin}/groonga -n #{testpath}/test-normalizer-mysql.db", "r+") {|io|
|
|
io.puts "register normalizers/mysql"
|
|
sleep 2
|
|
io.puts("shutdown")
|
|
# expected returned result is like this:
|
|
# [[0,1447502555.38667,0.000824928283691406],true]\n
|
|
assert_match(/\[\[0,\d+.\d+,\d+.\d+\],true\]/, io.read)
|
|
}
|
|
end
|
|
end
|