de0359f3fc
Correctness is pretty important here, and it doesn't take too long. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
397 B
Ruby
17 lines
397 B
Ruby
require 'formula'
|
|
|
|
class Libmpc < Formula
|
|
homepage 'http://multiprecision.org'
|
|
url 'http://multiprecision.org/mpc/download/mpc-0.9.tar.gz'
|
|
md5 '0d6acab8d214bd7d1fbbc593e83dd00d'
|
|
|
|
depends_on 'gmp'
|
|
depends_on 'mpfr'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make check"
|
|
system "make install"
|
|
end
|
|
end
|