71 lines
2.2 KiB
Ruby
71 lines
2.2 KiB
Ruby
class Gmp < Formula
|
|
desc "GNU multiple precision arithmetic library"
|
|
homepage "https://gmplib.org/"
|
|
url "https://gmplib.org/download/gmp/gmp-6.2.1.tar.xz"
|
|
mirror "https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz"
|
|
sha256 "fd4829912cddd12f84181c3451cc752be224643e87fac497b69edddadc49b4f2"
|
|
license any_of: ["LGPL-3.0-or-later", "GPL-2.0-or-later"]
|
|
|
|
livecheck do
|
|
url "https://gmplib.org/download/gmp/"
|
|
regex(/href=.*?gmp[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "ff4ad8d068ba4c14d146abb454991b6c4f246796ec2538593dc5f04ca7593eec"
|
|
sha256 cellar: :any, big_sur: "6a44705536f25c4b9f8547d44d129ae3b3657755039966ad2b86b821e187c32c"
|
|
sha256 cellar: :any, catalina: "35e9f82d80708ae8dea2d6b0646dcd86d692321b96effaa76b7fad4d6cffa5be"
|
|
sha256 cellar: :any, mojave: "00fb998dc2abbd09ee9f2ad733ae1adc185924fb01be8814e69a57ef750b1a32"
|
|
sha256 cellar: :any, high_sierra: "54191ce7fa888df64b9c52870531ac0ce2e8cbd40a7c4cdec74cb2c4a421af97"
|
|
end
|
|
|
|
uses_from_macos "m4" => :build
|
|
|
|
def install
|
|
args = std_configure_args
|
|
args << "--enable-cxx"
|
|
|
|
# Enable --with-pic to avoid linking issues with the static library
|
|
args << "--with-pic"
|
|
|
|
on_macos do
|
|
cpu = Hardware::CPU.arm? ? "aarch64" : Hardware.oldest_cpu
|
|
args << "--build=#{cpu}-apple-darwin#{OS.kernel_version.major}"
|
|
end
|
|
|
|
on_linux do
|
|
args << "--build=core2-linux-gnu"
|
|
args << "ABI=32" if Hardware::CPU.is_32_bit?
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "check"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <gmp.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
mpz_t i, j, k;
|
|
mpz_init_set_str (i, "1a", 16);
|
|
mpz_init (j);
|
|
mpz_init (k);
|
|
mpz_sqrtrem (j, k, i);
|
|
if (mpz_get_si (j) != 5 || mpz_get_si (k) != 1) abort();
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system ENV.cc, "test.c", "-L#{lib}", "-lgmp", "-o", "test"
|
|
system "./test"
|
|
|
|
# Test the static library to catch potential linking issues
|
|
system ENV.cc, "test.c", "#{lib}/libgmp.a", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|