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/'
|
2013-03-01 01:26:53 +00:00
|
|
|
url 'ftp://ftp.gmplib.org/pub/gmp-5.1.1/gmp-5.1.1.tar.bz2'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/gmp/gmp-5.1.1.tar.bz2'
|
|
|
|
sha1 '21d037f7fb32ae305a2e4157cff0c8caab06fe84'
|
2009-09-26 19:11:08 +00:00
|
|
|
|
2012-08-13 00:01:59 +00:00
|
|
|
option '32-bit'
|
2009-12-03 06:40:08 +00:00
|
|
|
|
2009-09-26 19:11:08 +00:00
|
|
|
def install
|
2013-03-01 01:26:53 +00:00
|
|
|
if build.build_32_bit?
|
2010-10-17 16:48:35 +00:00
|
|
|
ENV.m32
|
2013-03-01 01:26:53 +00:00
|
|
|
ENV.append 'ABI', '32'
|
2009-12-03 06:40:08 +00:00
|
|
|
end
|
2010-04-20 20:51:12 +00:00
|
|
|
|
2013-03-01 01:26:53 +00:00
|
|
|
system "./configure --prefix=#{prefix} --enable-cxx"
|
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
|