2012-04-03 04:08:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Grok < Formula
|
|
|
|
homepage 'https://github.com/jordansissel/grok'
|
|
|
|
url 'https://github.com/jordansissel/grok/tarball/v0.9.2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '909e2711b35962cf0119e873de751409da222c7d'
|
2012-04-03 04:08:28 +00:00
|
|
|
head 'https://github.com/jordansissel/grok.git'
|
|
|
|
|
|
|
|
depends_on 'libevent'
|
|
|
|
depends_on 'tokyo-cabinet'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make grok"
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|