aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libmpc.rb
blob: e3a458fd57ab138d6d147f865f8c2fb7b0e0b645 (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
47
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 3
    sha1 "6113e69eea132dfeb82db6edc10fdb964047f85d" => :yosemite
    sha1 "206544ff8ee4234e456ab778bb4c7e9d84878582" => :mavericks
    sha1 "5fe23420d4647f9447d976d19e402dbcea198c47" => :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