2010-08-16 18:53:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Btparse < Formula
|
2010-08-16 18:53:05 +00:00
|
|
|
url 'http://www.gerg.ca/software/btOOL/btparse-0.34.tar.gz'
|
|
|
|
homepage 'http://www.gerg.ca/software/btOOL/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'cfc2a5364b99121843dae4fd4ce1b01326a7a0bb'
|
2010-08-16 18:53:05 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|