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

class Groonga < Formula
  url 'http://packages.groonga.org/source/groonga/groonga-2.0.2.tar.gz'
  homepage 'http://groonga.org/'
  md5 '8791e4f0b08c8065d6836b2fb18a295a'

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