homebrew-core/Formula/groonga.rb
Yoji SHIDARA 22d76b72d2 groonga 1.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-29 21:36:46 -08:00

12 lines
302 B
Ruby

require 'formula'
class Groonga < Formula
url 'http://packages.groonga.org/source/groonga/groonga-1.3.0.tar.gz'
homepage 'http://groonga.org/'
md5 'd8b3ada75185b59665131e4eee30d107'
def install
system "./configure", "--prefix=#{prefix}", "--with-zlib"
system "make install"
end
end