New Formula: Quantlib
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
6b3e0c7abe
commit
220bd47d59
1 changed files with 15 additions and 0 deletions
15
Formula/quantlib.rb
Normal file
15
Formula/quantlib.rb
Normal 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
|
Loading…
Reference in a new issue