aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/groonga.rb
blob: c7f3fabd6e4b917c929fc38cb786242fb8e59937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Groonga <Formula
  url 'http://groonga.org/files/groonga/groonga-1.0.6.tar.gz'
  homepage 'http://groonga.org/'
  md5 'a278e72801a68acf374cbc309d73ba34'

  def install
    system "./configure", "--prefix=#{prefix}", "--with-zlib"
    system "make install"
  end
end