homebrew-core/Formula/libmpc.rb
Jack Nagel de0359f3fc libmpc: always run make check
Correctness is pretty important here, and it doesn't take too long.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-07 22:20:48 -05:00

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