New formula: btparse

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Cory T. Cornelius 2010-08-16 14:53:05 -04:00 committed by Adam Vandenberg
parent d64e896b4a
commit d7affe0e64

15
Formula/btparse.rb Normal file
View file

@ -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