blob: 36ecb1938647885dab970cef10b80f847d118a92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|