blob: f81477247ac1d4881566a16eaa1a531ca6d2b609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Bgrep < Formula
homepage 'https://github.com/tmbinc/bgrep'
url 'https://github.com/tmbinc/bgrep/archive/bgrep-0.2.tar.gz'
sha1 '37f29f95397730dcd8760a0bac33ba167ac7d998'
def install
system "#{ENV.cc} #{ENV.cflags} -o bgrep bgrep.c"
bin.install "bgrep"
end
end
|