New Formula: Quantlib

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Sascha Kratky 2010-09-24 19:30:05 +02:00 committed by Adam Vandenberg
parent 6b3e0c7abe
commit 220bd47d59
1 changed files with 15 additions and 0 deletions

15
Formula/quantlib.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Quantlib <Formula
url 'http://sourceforge.net/projects/quantlib/files/QuantLib/1.0.1/QuantLib-1.0.1.tar.gz'
homepage 'http://quantlib.org/'
md5 'e879dc02de33e1f4b90666346a90a280'
depends_on 'boost'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end