3c0aa88942
Closes Homebrew/homebrew#8519. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
12 lines
288 B
Ruby
12 lines
288 B
Ruby
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
|