3f2582e1b7
Closes Homebrew/homebrew#31944. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
require "formula"
|
|
|
|
class Groonga < Formula
|
|
homepage "http://groonga.org/"
|
|
url "http://packages.groonga.org/source/groonga/groonga-4.0.5.tar.gz"
|
|
sha1 "2e6fd8743a71532f5ee29f3508b678f5505802d2"
|
|
|
|
bottle do
|
|
sha1 "9c6ab2a1c81cf907cadfb0a48a66a326737091b9" => :mavericks
|
|
sha1 "c39d70c9ae83fd3af14079d0102391cf4b7649bb" => :mountain_lion
|
|
sha1 "d46e6f5df48d56b653b8fe183b1caf83634e128b" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pcre"
|
|
depends_on "msgpack"
|
|
depends_on "mecab" => :optional
|
|
depends_on "mecab-ipadic" if build.with? "mecab"
|
|
|
|
depends_on "glib" if build.include? "enable-benchmark"
|
|
|
|
option "enable-benchmark", "Enable benchmark program for developer use"
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--with-zlib
|
|
--disable-zeromq
|
|
]
|
|
|
|
args << "--enable-benchmark" if build.include? "enable-benchmark"
|
|
args << "--with-mecab" if build.with? "mecab"
|
|
|
|
# ZeroMQ is an optional dependency that will be auto-detected unless we disable it
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|