aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/groonga.rb
blob: 8318518bcd265ec9a45ed8533f2d2f6a1a8f2584 (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-1.2.8.tar.gz'
  homepage 'http://groonga.org/'
  md5 'a319b1f3a55cbf250ef5255f5c51ff46'

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