d0cea5caf9
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
311 B
Ruby
12 lines
311 B
Ruby
require 'formula'
|
|
|
|
class Groonga < Formula
|
|
homepage 'http://groonga.org/'
|
|
url 'http://packages.groonga.org/source/groonga/groonga-2.0.3.tar.gz'
|
|
sha1 'a9dffb17bf722f12c45c43d56243d8c72a31f8c8'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--with-zlib"
|
|
system "make install"
|
|
end
|
|
end
|