aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mpfr.rb
blob: ba946586a46d421fce99a3fafad0c51ef2eab480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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