2011-11-12 17:23:20 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bgrep < Formula
|
|
|
|
url 'https://github.com/tmbinc/bgrep/tarball/bgrep-0.2'
|
|
|
|
homepage 'https://github.com/tmbinc/bgrep'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'a43be236e437779a941ebfbeca8a3abf7075182d'
|
2011-11-12 17:23:20 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "#{ENV.cc} #{ENV.cflags} -o bgrep bgrep.c"
|
|
|
|
bin.install "bgrep"
|
|
|
|
end
|
|
|
|
end
|