blob: 21b168ddb10c039692b5e237cff8fd4c9a2764b4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | require 'formula'
class Grok < Formula
  homepage 'https://github.com/jordansissel/grok'
  url 'https://github.com/jordansissel/grok/archive/v0.9.2.tar.gz'
  sha1 'ca87b2a21d67b3fda74f209db22f7e1773edd7e8'
  head 'https://github.com/jordansissel/grok.git'
  depends_on 'libevent'
  depends_on 'pcre'
  depends_on 'tokyo-cabinet'
  def install
    system "make grok"
    system "make", "install", "PREFIX=#{prefix}"
  end
end
 |