homebrew-core/Formula/mpfr.rb
Ben Leslie 82a627aaf8 Fix download URL (mpfr-current -> mpfr-2.4.2)
mpfr has recently released version 3.0. This means mpfr-current
points to 3.0, not 2.4.2.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-18 12:26:56 -07:00

18 lines
403 B
Ruby

require 'formula'
class Mpfr <Formula
url 'http://www.mpfr.org/mpfr-2.4.2/mpfr-2.4.2.tar.bz2'
homepage 'http://www.mpfr.org/'
md5 '89e59fe665e2b3ad44a6789f40b059a0'
depends_on 'gmp'
def patches
{:p1 => ['http://www.mpfr.org/mpfr-2.4.2/allpatches']}
end
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end