53 lines
1.8 KiB
Ruby
53 lines
1.8 KiB
Ruby
class Cln < Formula
|
|
desc "Class Library for Numbers"
|
|
homepage "https://www.ginac.de/CLN/"
|
|
license "GPL-2.0"
|
|
|
|
stable do
|
|
url "https://www.ginac.de/CLN/cln-1.3.6.tar.bz2"
|
|
sha256 "f492530e8879bda529009b6033e1923c8f4aae843149fc28c667c20b094d984a"
|
|
|
|
# Fix -flat_namespace being used on Big Sur and later.
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-big_sur.diff"
|
|
sha256 "35acd6aebc19843f1a2b3a63e880baceb0f5278ab1ace661e57a502d9d78c93c"
|
|
end
|
|
end
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/href=.*?cln[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, monterey: "e810a5132e834905a8ae4c67130a003cbf2a5d7482040eed19c24cda13118ce8"
|
|
sha256 cellar: :any, big_sur: "3234c105147111fdbb679c8a27a4b59a99d8195a3e461642783028905c244db4"
|
|
sha256 cellar: :any, catalina: "bbc7716e6028fc3dc95dc22bf20033d13119b6ffe62dbd4c2609ecce85459a92"
|
|
sha256 cellar: :any, mojave: "1e62717cf6b0562643947c904c547e737bc9209cb349c388c6b7f9edcd915001"
|
|
sha256 cellar: :any, high_sierra: "0f14327e937f0a665dc66c5b62dc5d11094d812831221d8b86f8e5ba966e9540"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "899b98749201e57feef2d339c5a63ec88a19c241fa37a1480c020cca4d8363a8"
|
|
end
|
|
|
|
head do
|
|
url "git://www.ginac.de/cln.git", branch: "master"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "wget" => :build
|
|
end
|
|
|
|
depends_on "gmp"
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *std_configure_args
|
|
system "make"
|
|
system "make", "check"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match "3.14159", shell_output("#{bin}/pi 6")
|
|
end
|
|
end
|