homebrew-core/Formula/libmpc.rb
Xu Cheng 949e1dfbd8 libmpc: add test
Closes Homebrew/homebrew#35354.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-30 11:00:18 +00:00

46 lines
1 KiB
Ruby

class Libmpc < Formula
homepage "http://multiprecision.org"
url "http://ftpmirror.gnu.org/mpc/mpc-1.0.2.tar.gz"
mirror "http://multiprecision.org/mpc/download/mpc-1.0.2.tar.gz"
sha1 "5072d82ab50ec36cc8c0e320b5c377adb48abe70"
bottle do
cellar :any
revision 2
sha1 "656a38feba0a27261f7e71060449731f3e18f7ee" => :yosemite
sha1 "0f02ce11ca69a24e02e2abd08b01b48192cdac59" => :mavericks
end
depends_on "gmp"
depends_on "mpfr"
def install
args = [
"--prefix=#{prefix}",
"--disable-dependency-tracking",
"--with-gmp=#{Formula["gmp"].opt_prefix}",
"--with-mpfr=#{Formula["mpfr"].opt_prefix}"
]
system "./configure", *args
system "make"
system "make", "check"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <mpc.h>
int main()
{
mpc_t x;
mpc_init2 (x, 256);
mpc_clear (x);
return 0;
}
EOS
system ENV.cc, "test.c", "-lgmp", "-lmpfr", "-lmpc", "-o", "test"
system "./test"
end
end