109 lines
4.4 KiB
Ruby
109 lines
4.4 KiB
Ruby
class Curl < Formula
|
|
desc "Get a file from an HTTP, HTTPS or FTP server"
|
|
homepage "https://curl.haxx.se/"
|
|
url "https://curl.haxx.se/download/curl-7.50.3.tar.bz2"
|
|
sha256 "7b7347d976661d02c84a1f4d6daf40dee377efdc45b9e2c77dedb8acf140d8ec"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "638108732f8c4dacea7953c81b070d8ab8bde837e0608f0b4ca36124b7ff1055" => :sierra
|
|
sha256 "b425bee3c2602e9b470db43b00418805e97ab675bfdd292be194e61fca8d9f52" => :el_capitan
|
|
sha256 "acd850690b6578bf1f7682804734cadf5b922aa17d696ef5154b15d048712319" => :yosemite
|
|
sha256 "cfbb0a2c28b150d13a239b9a6acd95cdd530cf57f7e26831f966d672e88dfcc0" => :mavericks
|
|
end
|
|
|
|
keg_only :provided_by_osx
|
|
|
|
option "with-libidn", "Build with support for Internationalized Domain Names"
|
|
option "with-rtmpdump", "Build with RTMP support"
|
|
option "with-libssh2", "Build with scp and sftp support"
|
|
option "with-c-ares", "Build with C-Ares async DNS support"
|
|
option "with-gssapi", "Build with GSSAPI/Kerberos authentication support."
|
|
option "with-libmetalink", "Build with libmetalink support."
|
|
option "with-libressl", "Build with LibreSSL instead of Secure Transport or OpenSSL"
|
|
option "with-nghttp2", "Build with HTTP/2 support (requires OpenSSL or LibreSSL)"
|
|
|
|
deprecated_option "with-idn" => "with-libidn"
|
|
deprecated_option "with-rtmp" => "with-rtmpdump"
|
|
deprecated_option "with-ssh" => "with-libssh2"
|
|
deprecated_option "with-ares" => "with-c-ares"
|
|
|
|
# HTTP/2 support requires OpenSSL 1.0.2+ or LibreSSL 2.1.3+ for ALPN Support
|
|
# which is currently not supported by Secure Transport (DarwinSSL).
|
|
if MacOS.version < :mountain_lion || (build.with?("nghttp2") && build.without?("libressl"))
|
|
depends_on "openssl"
|
|
else
|
|
option "with-openssl", "Build with OpenSSL instead of Secure Transport"
|
|
depends_on "openssl" => :optional
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libidn" => :optional
|
|
depends_on "rtmpdump" => :optional
|
|
depends_on "libssh2" => :optional
|
|
depends_on "c-ares" => :optional
|
|
depends_on "libmetalink" => :optional
|
|
depends_on "libressl" => :optional
|
|
depends_on "nghttp2" => :optional
|
|
|
|
def install
|
|
# Fail if someone tries to use both SSL choices.
|
|
# Long-term, handle conflicting options case in core code.
|
|
if build.with?("libressl") && build.with?("openssl")
|
|
odie <<-EOS.undent
|
|
--with-openssl and --with-libressl are both specified and
|
|
curl can only use one at a time.
|
|
EOS
|
|
end
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
# cURL has a new firm desire to find ssl with PKG_CONFIG_PATH instead of using
|
|
# "--with-ssl" any more. "when possible, set the PKG_CONFIG_PATH environment
|
|
# variable instead of using this option". Multi-SSL choice breaks w/o using it.
|
|
if build.with? "libressl"
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["libressl"].opt_lib}/pkgconfig"
|
|
args << "--with-ssl=#{Formula["libressl"].opt_prefix}"
|
|
args << "--with-ca-bundle=#{etc}/libressl/cert.pem"
|
|
elsif MacOS.version < :mountain_lion || build.with?("openssl") || build.with?("nghttp2")
|
|
ENV.prepend_path "PKG_CONFIG_PATH", "#{Formula["openssl"].opt_lib}/pkgconfig"
|
|
args << "--with-ssl=#{Formula["openssl"].opt_prefix}"
|
|
args << "--with-ca-bundle=#{etc}/openssl/cert.pem"
|
|
else
|
|
args << "--with-darwinssl"
|
|
end
|
|
|
|
args << (build.with?("libssh2") ? "--with-libssh2" : "--without-libssh2")
|
|
args << (build.with?("libidn") ? "--with-libidn" : "--without-libidn")
|
|
args << (build.with?("libmetalink") ? "--with-libmetalink" : "--without-libmetalink")
|
|
args << (build.with?("gssapi") ? "--with-gssapi" : "--without-gssapi")
|
|
args << (build.with?("rtmpdump") ? "--with-librtmp" : "--without-librtmp")
|
|
|
|
if build.with? "c-ares"
|
|
args << "--enable-ares=#{Formula["c-ares"].opt_prefix}"
|
|
else
|
|
args << "--disable-ares"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
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 File.exist?("test.pem")
|
|
assert File.exist?("certdata.txt")
|
|
end
|
|
end
|