92 lines
2.5 KiB
Ruby
92 lines
2.5 KiB
Ruby
class Curl < Formula
|
|
desc "Get a file from an HTTP, HTTPS or FTP server"
|
|
homepage "https://curl.se"
|
|
url "https://curl.se/download/curl-7.75.0.tar.bz2"
|
|
sha256 "50552d4501c178e4cc68baaecc487f466a3d6d19bbf4e50a01869effb316d026"
|
|
license "curl"
|
|
|
|
livecheck do
|
|
url "https://curl.se/download/"
|
|
regex(/href=.*?curl[._-]v?(.*?)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "feef288ebc2fb55c4c0803e233c600b5ded8e92863f0ad3a058c9c007933940b"
|
|
sha256 cellar: :any, big_sur: "04b809e93240c4b79bad7d224756492a574e6f97e78d2b394cb7418b633d5c7d"
|
|
sha256 cellar: :any, catalina: "f06f0f2a005d444c23cdaec96f047a204cb024ee881213682ab3374f1d1f4dbd"
|
|
sha256 cellar: :any, mojave: "ebcf2c049613a0655429872b1bd109b1dd00ba1721e6356cf2aec8b95ba37e47"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/curl/curl.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
keg_only :provided_by_macos
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "brotli"
|
|
depends_on "libidn2"
|
|
depends_on "libmetalink"
|
|
depends_on "libssh2"
|
|
depends_on "nghttp2"
|
|
depends_on "openldap"
|
|
depends_on "openssl@1.1"
|
|
depends_on "rtmpdump"
|
|
depends_on "zstd"
|
|
|
|
uses_from_macos "krb5"
|
|
uses_from_macos "zlib"
|
|
|
|
def install
|
|
system "./buildconf" if build.head?
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--with-ssl=#{Formula["openssl@1.1"].opt_prefix}
|
|
--without-ca-bundle
|
|
--without-ca-path
|
|
--with-ca-fallback
|
|
--with-secure-transport
|
|
--with-default-ssl-backend=openssl
|
|
--with-gssapi
|
|
--with-libidn2
|
|
--with-libmetalink
|
|
--with-librtmp
|
|
--with-libssh2
|
|
--without-libpsl
|
|
]
|
|
|
|
on_macos do
|
|
args << "--with-gssapi"
|
|
end
|
|
|
|
on_linux do
|
|
args << "--with-gssapi=#{Formula["krb5"].opt_prefix}"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
system "make", "install", "-C", "scripts"
|
|
libexec.install "lib/mk-ca-bundle.pl"
|
|
end
|
|
|
|
test do
|
|
# Fetch the curl tarball and see that the checksum matches.
|
|
# This requires a network connection, but so does Homebrew in general.
|
|
filename = (testpath/"test.tar.gz")
|
|
system "#{bin}/curl", "-L", stable.url, "-o", filename
|
|
filename.verify_checksum stable.checksum
|
|
|
|
system libexec/"mk-ca-bundle.pl", "test.pem"
|
|
assert_predicate testpath/"test.pem", :exist?
|
|
assert_predicate testpath/"certdata.txt", :exist?
|
|
end
|
|
end
|