aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libmpc.rb
blob: 475b218dd6976aaa2f0f4d17704ad6917d89e142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Libmpc < Formula
  homepage "http://multiprecision.org"
  url "http://ftpmirror.gnu.org/mpc/mpc-1.0.3.tar.gz"
  mirror "http://multiprecision.org/mpc/download/mpc-1.0.3.tar.gz"
  sha1 "b8be66396c726fdc36ebb0f692ed8a8cca3bcc66"

  bottle do
    cellar :any
    sha1 "c96c76d63b166fb13e6818a0ae7094455002b420" => :yosemite
    sha1 "b1a74b2c579600f12002a842bc8ddd82785277ce" => :mavericks
    sha1 "5fe25b2992da6773db6fec8a72260272a6058782" => :mountain_lion
  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