aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMarc Abramowitz2011-11-12 09:23:20 -0800
committerJack Nagel2011-12-13 15:29:19 -0600
commitd47556e5f55348272eecf3b4f44ad5b3c0984d58 (patch)
tree6b86644e5fdd2b46d9189f2b4535ae49376e2280 /Library
parentb09ba9a3fb32f35a3fb68bde6300093def805449 (diff)
downloadhomebrew-d47556e5f55348272eecf3b4f44ad5b3c0984d58.tar.bz2
New formula: bgrep
Closes #8519. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bgrep.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/bgrep.rb b/Library/Formula/bgrep.rb
new file mode 100644
index 000000000..564f2432c
--- /dev/null
+++ b/Library/Formula/bgrep.rb
@@ -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