aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCory T. Cornelius2010-08-16 14:53:05 -0400
committerAdam Vandenberg2010-08-17 10:04:46 -0700
commit60c7ef208c4ec8c99883305aae866c1abf6e2b9b (patch)
tree6ce2d5290a2654960a6825d1d1e0057eaba461ae /Library/Formula
parent3697022faffee6f9bdcc84c5831d64bd4e46e399 (diff)
downloadhomebrew-60c7ef208c4ec8c99883305aae866c1abf6e2b9b.tar.bz2
New formula: btparse
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/btparse.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/btparse.rb b/Library/Formula/btparse.rb
new file mode 100644
index 000000000..e7ac958a6
--- /dev/null
+++ b/Library/Formula/btparse.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Btparse <Formula
+ url 'http://www.gerg.ca/software/btOOL/btparse-0.34.tar.gz'
+ homepage 'http://www.gerg.ca/software/btOOL/'
+ md5 '87d09ce6331c57cc2da30b5c83f545e0'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
+ system "make install"
+ end
+end