18 lines
407 B
Ruby
18 lines
407 B
Ruby
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'
|
|
|
|
def patches
|
|
{:p1 => ['http://www.mpfr.org/mpfr-current/allpatches']}
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|