homebrew-core/Formula/quantlib.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

15 lines
402 B
Ruby

require 'formula'
class Quantlib < Formula
homepage 'http://quantlib.org/'
url 'http://downloads.sourceforge.net/project/quantlib/QuantLib/1.2.1/QuantLib-1.2.1.tar.gz'
sha1 '2a9faf539c7452f2f6c2b8d593677cd133659742'
depends_on 'boost'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end