homebrew-core/Formula/groonga.rb
Ryunosuke SATO a79e98bb42 groonga 1.2.6
Closes Homebrew/homebrew#7871.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-28 14:54:15 -05:00

12 lines
302 B
Ruby

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