2009-12-27 11:30:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mpfr <Formula
|
2010-07-27 22:20:45 +00:00
|
|
|
url 'http://www.mpfr.org/mpfr-3.0.0/mpfr-3.0.0.tar.bz2'
|
2009-12-27 11:30:02 +00:00
|
|
|
homepage 'http://www.mpfr.org/'
|
2010-07-27 22:20:45 +00:00
|
|
|
md5 'f45bac3584922c8004a10060ab1a8f9f'
|
2009-12-27 11:30:02 +00:00
|
|
|
|
|
|
|
depends_on 'gmp'
|
|
|
|
|
2010-03-07 18:30:51 +00:00
|
|
|
def patches
|
2010-07-27 22:20:45 +00:00
|
|
|
{:p1 => ['http://www.mpfr.org/mpfr-3.0.0/allpatches']}
|
2010-03-07 18:30:51 +00:00
|
|
|
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
|