homebrew-core/Formula/grok.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

16 lines
408 B
Ruby

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