32b7840b4f
curl will opportunistically pick up unrequested librares, despite superenv filtering. This adds a few extra options for things curl can find on its own, and explicitly disables anything that's unrequested.
60 lines
2 KiB
Ruby
60 lines
2 KiB
Ruby
require 'formula'
|
|
|
|
class Curl < Formula
|
|
homepage 'http://curl.haxx.se/'
|
|
url 'http://curl.haxx.se/download/curl-7.36.0.tar.gz'
|
|
mirror 'ftp://ftp.sunet.se/pub/www/utilities/curl/curl-7.36.0.tar.gz'
|
|
sha256 '33015795d5650a2bfdd9a4a28ce4317cef944722a5cfca0d1563db8479840e90'
|
|
|
|
keg_only :provided_by_osx
|
|
|
|
option 'with-idn', 'Build with support for Internationalized Domain Names'
|
|
option 'with-rtmp', 'Build with RTMP support'
|
|
option 'with-ssh', 'Build with scp and sftp support'
|
|
option 'with-ares', 'Build with C-Ares async DNS support'
|
|
option 'with-gssapi', 'Build with GSSAPI/Kerberos authentication support.'
|
|
|
|
if MacOS.version >= :mountain_lion
|
|
option 'with-openssl', 'Build with OpenSSL instead of Secure Transport'
|
|
depends_on 'openssl' => :optional
|
|
else
|
|
depends_on 'openssl'
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libidn' if build.with? 'idn'
|
|
depends_on 'libmetalink' => :optional
|
|
depends_on 'libssh2' if build.with? 'ssh'
|
|
depends_on 'c-ares' if build.with? 'ares'
|
|
depends_on 'rtmpdump' if build.with? 'rtmp'
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
if MacOS.version < :mountain_lion or build.with? "openssl"
|
|
args << "--with-ssl=#{Formula["openssl"].opt_prefix}"
|
|
else
|
|
args << "--with-darwinssl"
|
|
end
|
|
|
|
args << (build.with?("ssh") ? "--with-libssh2" : "--without-libssh2")
|
|
args << (build.with?("idn") ? "--with-libidn" : "--without-libidn")
|
|
args << (build.with?("libmetalink") ? "--with-libmetalink" : "--without-libmetalink")
|
|
args << (build.with?("gssapi") ? "--with-gssapi" : "--without-gssapi")
|
|
args << (build.with?("rtmp") ? "--with-librtmp" : "--without-librtmp")
|
|
args << (build.with?("gssapi") ? "--with-gssapi" : "--without-gssapi")
|
|
|
|
if build.with? "ares"
|
|
args << "--enable-ares=#{Formula["c-ares"].opt_prefix}"
|
|
else
|
|
args << "--disable-ares"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|