aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Holm2012-12-24 14:17:30 +0100
committerAdam Vandenberg2013-01-23 20:57:01 -0800
commiteac485b81f8738656fe46983ba34551fc4edfbea (patch)
tree430a5db7d4d4dc5258060d5d0d3bf2f84392404f /Library/Formula
parent926e0ee1200b52e021d99d6951f3a1b23c3d2c8b (diff)
downloadhomebrew-eac485b81f8738656fe46983ba34551fc4edfbea.tar.bz2
clpbar 1.11.1
Closes #16727. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/clpbar.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/clpbar.rb b/Library/Formula/clpbar.rb
new file mode 100644
index 000000000..81454e824
--- /dev/null
+++ b/Library/Formula/clpbar.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Clpbar < Formula
+ homepage 'http://clpbar.sourceforge.net/'
+ url 'http://sourceforge.net/projects/clpbar/files/clpbar/bar-1.11.1/bar_1.11.1.tar.gz'
+ version '1.11.1'
+ sha1 '112d54cec7ebe85aacc6c2ef7d55e297264d1dd5'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--program-prefix='clp'"
+ system "make install"
+ end
+end