aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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