2009-12-27 11:30:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mpfr <Formula
|
|
|
|
url 'http://www.mpfr.org/mpfr-current/mpfr-2.4.2.tar.bz2'
|
|
|
|
homepage 'http://www.mpfr.org/'
|
|
|
|
md5 '89e59fe665e2b3ad44a6789f40b059a0'
|
|
|
|
|
|
|
|
depends_on 'gmp'
|
|
|
|
|
2010-03-07 18:30:51 +00:00
|
|
|
def patches
|
|
|
|
{:p1 => ['http://www.mpfr.org/mpfr-current/allpatches']}
|
|
|
|
end
|
|
|
|
|
2009-12-27 11:30:02 +00:00
|
|
|
def install
|
2010-04-30 15:48:10 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2009-12-27 11:30:02 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|