blob: db7d3dce892695f0b79295b27b253adfb6271bfe (
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
|
require 'formula'
class Libmpc < Formula
homepage 'http://multiprecision.org'
url 'http://multiprecision.org/mpc/download/mpc-1.0.1.tar.gz'
sha1 '8c7e19ad0dd9b3b5cc652273403423d6cf0c5edf'
depends_on 'gmp'
depends_on 'mpfr'
def install
args = [
"--prefix=#{prefix}",
"--disable-dependency-tracking",
"--with-gmp=#{Formula.factory('gmp').opt_prefix}",
"--with-mpfr=#{Formula.factory('mpfr').opt_prefix}"
]
system "./configure", *args
system "make"
system "make check"
system "make install"
end
end
|