class Groonga < Formula desc "Fulltext search engine and column store" homepage "http://groonga.org/" url "https://packages.groonga.org/source/groonga/groonga-9.0.0.tar.gz" sha256 "c5d592e74a4f27fafdf636cf7fd7124a04b7b055cdb79d593b694c0ecd2686e7" bottle do sha256 "0752b27e2bfe8d0e5d4da4f4133cc7260f3b2e80891b92c00d8b548ac86dd139" => :mojave sha256 "bae2f7f9100ba28165b5de7be512d21bab42eda371bf44c85351f861f9346f5f" => :high_sierra sha256 "08993714d930c438bcc727228469f0bda47c2e78690619763916f380234b621a" => :sierra end head do url "https://github.com/groonga/groonga.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end depends_on "pkg-config" => :build depends_on "mecab" depends_on "mecab-ipadic" depends_on "msgpack" depends_on "openssl" depends_on "pcre" link_overwrite "lib/groonga/plugins/normalizers/" link_overwrite "share/doc/groonga-normalizer-mysql/" link_overwrite "lib/pkgconfig/groonga-normalizer-mysql.pc" resource "groonga-normalizer-mysql" do url "https://packages.groonga.org/source/groonga-normalizer-mysql/groonga-normalizer-mysql-1.1.3.tar.gz" sha256 "e4534c725de244f5da72b2b05ddcbf1cfb4e56e71ac40f01acae817adf90d72c" end def install args = %W[ --prefix=#{prefix} --disable-zeromq --enable-mruby --with-ssl --with-zlib --without-libstemmer --with-mecab ] 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+") do |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) end IO.popen("#{bin}/groonga -n #{testpath}/test-normalizer-mysql.db", "r+") do |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 end