aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/groonga.rb
blob: 70462d3f7eb2c021f6c737ebea3d2b5031acd3b2 (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.4.tar.gz'
  homepage 'http://groonga.org/'
  md5 '58faebee3055f849e01be953eb4a6b7f'

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