New formula: bgrep

Closes Homebrew/homebrew#8519.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Marc Abramowitz 2011-11-12 09:23:20 -08:00 committed by Jack Nagel
parent ca5bca05a8
commit 3c0aa88942
1 changed files with 12 additions and 0 deletions

12
Formula/bgrep.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Bgrep < Formula
url 'https://github.com/tmbinc/bgrep/tarball/bgrep-0.2'
homepage 'https://github.com/tmbinc/bgrep'
md5 '0f5b3debbb502b196ef63e277660bccc'
def install
system "#{ENV.cc} #{ENV.cflags} -o bgrep bgrep.c"
bin.install "bgrep"
end
end