2010-04-20 20:52:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libmpc < Formula
|
|
|
|
homepage 'http://multiprecision.org'
|
2012-09-07 01:24:26 +00:00
|
|
|
url 'http://multiprecision.org/mpc/download/mpc-1.0.1.tar.gz'
|
|
|
|
sha1 '8c7e19ad0dd9b3b5cc652273403423d6cf0c5edf'
|
2010-04-20 20:52:06 +00:00
|
|
|
|
2013-03-25 23:26:58 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 'c8bbad14fa8314418e07aa7a5cd824452fa6ea1e' => :mountain_lion
|
|
|
|
sha1 '21363b47cdc6085b1c09aead7f63918c69a57bed' => :lion
|
|
|
|
sha1 '2b2fb525a4e87e7a954e70be13dfde1110329859' => :snow_leopard
|
|
|
|
end
|
|
|
|
|
2010-04-26 07:03:46 +00:00
|
|
|
depends_on 'gmp'
|
|
|
|
depends_on 'mpfr'
|
|
|
|
|
2010-04-20 20:52:06 +00:00
|
|
|
def install
|
2013-01-22 02:29:55 +00:00
|
|
|
args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--with-gmp=#{Formula.factory('gmp').opt_prefix}",
|
|
|
|
"--with-mpfr=#{Formula.factory('mpfr').opt_prefix}"
|
|
|
|
]
|
|
|
|
|
|
|
|
system "./configure", *args
|
2010-04-20 20:52:06 +00:00
|
|
|
system "make"
|
2012-05-08 03:19:31 +00:00
|
|
|
system "make check"
|
2010-04-20 20:52:06 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|