aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/grok.rb
blob: 93d4e6de563e2fc026cf2857d768e321c1fa84c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 'tokyo-cabinet'

  def install
    system "make grok"
    system "make", "install", "PREFIX=#{prefix}"
  end
end