2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-26 19:11:08 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gmp < Formula
|
2009-09-26 19:11:08 +00:00
|
|
|
homepage 'http://gmplib.org/'
|
2014-05-14 20:18:01 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/gmp/gmp-6.0.0a.tar.bz2'
|
|
|
|
mirror 'ftp://ftp.gmplib.org/pub/gmp/gmp-6.0.0a.tar.bz2'
|
2014-04-18 17:12:31 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/gmp/gmp-6.0.0a.tar.bz2'
|
|
|
|
sha1 '360802e3541a3da08ab4b55268c80f799939fddc'
|
2013-09-24 23:25:19 +00:00
|
|
|
|
2013-10-08 09:28:49 +00:00
|
|
|
bottle do
|
2013-12-05 04:57:46 +00:00
|
|
|
cellar :any
|
2014-04-18 17:28:24 +00:00
|
|
|
sha1 "bfaab8c533af804d4317730f62164b9c80f84f24" => :mavericks
|
|
|
|
sha1 "99dc6539860a9a8d3eb1ac68d5b9434acfb2d846" => :mountain_lion
|
|
|
|
sha1 "466b7549553bf0e8f14ab018bd89c48cbd29a379" => :lion
|
2013-10-08 09:28:49 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 00:01:59 +00:00
|
|
|
option '32-bit'
|
2013-11-14 18:42:52 +00:00
|
|
|
option :cxx11
|
2009-12-03 06:40:08 +00:00
|
|
|
|
2009-09-26 19:11:08 +00:00
|
|
|
def install
|
2013-11-14 18:42:52 +00:00
|
|
|
ENV.cxx11 if build.cxx11?
|
2013-06-23 18:15:45 +00:00
|
|
|
args = ["--prefix=#{prefix}", "--enable-cxx"]
|
|
|
|
|
2013-03-01 01:26:53 +00:00
|
|
|
if build.build_32_bit?
|
2010-10-17 16:48:35 +00:00
|
|
|
ENV.m32
|
2014-05-22 14:18:34 +00:00
|
|
|
args << "ABI=32"
|
2013-12-14 18:13:11 +00:00
|
|
|
# https://github.com/Homebrew/homebrew/issues/20693
|
2013-06-23 18:15:45 +00:00
|
|
|
args << "--disable-assembly"
|
2013-10-08 09:03:30 +00:00
|
|
|
elsif build.bottle?
|
|
|
|
args << "--disable-assembly"
|
2009-12-03 06:40:08 +00:00
|
|
|
end
|
2010-04-20 20:51:12 +00:00
|
|
|
|
2013-06-23 18:15:45 +00:00
|
|
|
system "./configure", *args
|
2009-12-03 06:40:08 +00:00
|
|
|
system "make"
|
2012-10-01 23:24:36 +00:00
|
|
|
system "make check"
|
2013-03-01 01:26:53 +00:00
|
|
|
ENV.deparallelize
|
2012-05-08 02:23:51 +00:00
|
|
|
system "make install"
|
2009-09-26 19:11:08 +00:00
|
|
|
end
|
|
|
|
end
|