3ad9a0896f
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>
16 lines
408 B
Ruby
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
|