homebrew-core/Formula/groonga.rb
Yoji SHIDARA 1f03d19cfe groonga 2.0.5
Closes Homebrew/homebrew#13841.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-01 23:54:24 -05:00

14 lines
335 B
Ruby

require 'formula'
class Groonga < Formula
homepage 'http://groonga.org/'
url 'http://packages.groonga.org/source/groonga/groonga-2.0.5.tar.gz'
sha1 '0256c3e5e800e9763995b31e0864268e6a40678c'
depends_on 'msgpack'
def install
system "./configure", "--prefix=#{prefix}", "--with-zlib"
system "make install"
end
end