homebrew-core/Formula/groonga.rb
Yoji SHIDARA 5bac6abf97 groonga 2.0.6
Closes Homebrew/homebrew#14510.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-28 20:32:10 -07: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.6.tar.gz'
sha1 'a012a86d03e193f2ab029de2f1e09aa5f0e52bcf'
depends_on 'msgpack'
def install
system "./configure", "--prefix=#{prefix}", "--with-zlib"
system "make install"
end
end