homebrew-core/Formula/groonga.rb
HAYASHI Kentaro bdf76ebda8 Groonga 3.0.9
Closes Homebrew/homebrew#23690.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-28 18:55:14 -07:00

19 lines
550 B
Ruby

require 'formula'
class Groonga < Formula
homepage 'http://groonga.org/'
url 'http://packages.groonga.org/source/groonga/groonga-3.0.9.tar.gz'
sha1 '18d3031df30aff2c21aea45ad994247ae8314d0f'
depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'msgpack'
def install
# ZeroMQ is an optional dependency that will be auto-detected unless we disable it
system "./configure", "--prefix=#{prefix}",
"--with-zlib",
"--disable-zeromq"
system "make install"
end
end