blob: bcf00e01229efa051386abb4948acde3f6c63421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Groonga < Formula
homepage 'http://groonga.org/'
url 'http://packages.groonga.org/source/groonga/groonga-3.0.6.tar.gz'
sha1 '5888c9e7ee422800b133536f6fe108931c3147e5'
depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'msgpack'
def install
# ZeroMQ is an optional dependency that will be auto-detected unless we disable it
system "./configure", "--prefix=#{prefix}",
"--with-zlib",
"--disable-zeromq"
system "make install"
end
end
|