e00e83cc37
Closes Homebrew/homebrew#28000. 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.1.tar.gz'
|
|
sha1 '96859d352cb6439f8dbe8e5fb55373f796a4a11e'
|
|
|
|
bottle do
|
|
sha1 "e39684c9c88a738496ebbcb0ba2e33c21d922043" => :mavericks
|
|
sha1 "7692109f8b2ca457c1ae2a6d7314c24d05cda339" => :mountain_lion
|
|
sha1 "a28d4c0d7de6a8590b8c3a6c1ff0def06485fe84" => :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
|