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