2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-26 19:11:08 +00:00
|
|
|
|
|
|
|
class Gmp <Formula
|
2010-04-20 20:51:12 +00:00
|
|
|
url 'ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.bz2'
|
2009-09-26 19:11:08 +00:00
|
|
|
homepage 'http://gmplib.org/'
|
2010-04-20 20:51:12 +00:00
|
|
|
sha1 '6340edc7ceb95f9015a758c7c0d196eb0f441d49'
|
2009-09-26 19:11:08 +00:00
|
|
|
|
2009-12-03 06:40:08 +00:00
|
|
|
def options
|
|
|
|
[
|
2010-04-26 15:40:55 +00:00
|
|
|
["--skip-check", "Do not run 'make check' to verify libraries. (Not recommended.)"],
|
|
|
|
["--32-bit", "Force 32-bit on Leopard on 64-bit machines."]
|
2009-12-03 06:40:08 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2009-09-26 19:11:08 +00:00
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm "On OS X 10.6, some tests fail under LLVM"
|
2010-04-20 20:51:12 +00:00
|
|
|
|
2010-04-26 15:40:55 +00:00
|
|
|
args = ["--prefix=#{prefix}", "--infodir=#{info}", "--enable-cxx"]
|
2009-09-26 19:11:08 +00:00
|
|
|
|
2010-04-26 15:40:55 +00:00
|
|
|
if MACOS_VERSION == 10.5
|
|
|
|
if Hardware.is_32_bit? or ARGV.include? "--32-bit"
|
|
|
|
ENV.m32
|
|
|
|
args << "--host=none-apple-darwin"
|
|
|
|
else
|
|
|
|
ENV.m64
|
|
|
|
end
|
2009-12-03 06:40:08 +00:00
|
|
|
end
|
2010-04-20 20:51:12 +00:00
|
|
|
|
2009-12-03 06:40:08 +00:00
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
|
|
ENV.j1 # Don't install in parallel
|
2009-09-26 19:11:08 +00:00
|
|
|
system "make install"
|
2010-04-20 20:51:12 +00:00
|
|
|
|
2009-12-03 06:40:08 +00:00
|
|
|
# Different compilers and options can cause tests to fail even
|
|
|
|
# if everything compiles, so yes, we want to do this step.
|
|
|
|
system "make check" unless ARGV.include? "--skip-check"
|
2009-09-26 19:11:08 +00:00
|
|
|
end
|
|
|
|
end
|