2009-12-17 19:55:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Curl < Formula
|
2009-12-17 19:55:27 +00:00
|
|
|
homepage 'http://curl.haxx.se/'
|
2014-01-29 23:02:38 +00:00
|
|
|
url 'http://curl.haxx.se/download/curl-7.35.0.tar.gz'
|
|
|
|
mirror 'ftp://ftp.sunet.se/pub/www/utilities/curl/curl-7.35.0.tar.gz'
|
|
|
|
sha256 '917d118fc5d61e9dd1538d6519bd93bbebf2e866882419781c2e0fdb2bc42121'
|
2009-12-17 19:55:27 +00:00
|
|
|
|
2013-12-11 19:27:13 +00:00
|
|
|
keg_only :provided_by_osx
|
2010-11-09 21:20:56 +00:00
|
|
|
|
2012-08-28 00:31:15 +00:00
|
|
|
option 'with-ssh', 'Build with scp and sftp support'
|
2012-09-20 16:50:15 +00:00
|
|
|
option 'with-ares', 'Build with C-Ares async DNS support'
|
2013-10-23 16:46:43 +00:00
|
|
|
option 'with-gssapi', 'Build with GSSAPI/Kerberos authentication support.'
|
2012-08-28 00:31:15 +00:00
|
|
|
|
2014-01-14 03:06:13 +00:00
|
|
|
if MacOS.version >= :mountain_lion
|
|
|
|
option 'with-openssl', 'Build with OpenSSL instead of Secure Transport'
|
|
|
|
depends_on 'openssl' => :optional
|
|
|
|
else
|
|
|
|
depends_on 'openssl'
|
|
|
|
end
|
|
|
|
|
2012-04-04 06:28:44 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2013-07-17 01:38:50 +00:00
|
|
|
depends_on 'libmetalink' => :optional
|
2013-04-13 01:01:22 +00:00
|
|
|
depends_on 'libssh2' if build.with? 'ssh'
|
|
|
|
depends_on 'c-ares' if build.with? 'ares'
|
2012-04-04 06:28:44 +00:00
|
|
|
|
2009-12-17 19:55:27 +00:00
|
|
|
def install
|
2012-04-04 06:28:44 +00:00
|
|
|
args = %W[
|
2012-08-28 00:31:15 +00:00
|
|
|
--disable-debug
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
2012-04-04 06:28:44 +00:00
|
|
|
|
2014-01-14 03:06:13 +00:00
|
|
|
if MacOS.version < :mountain_lion or build.with? "openssl"
|
|
|
|
args << "--with-ssl=#{Formula.factory("openssl").opt_prefix}"
|
|
|
|
else
|
|
|
|
args << "--with-darwinssl"
|
|
|
|
end
|
|
|
|
|
2013-04-13 01:01:22 +00:00
|
|
|
args << "--with-libssh2" if build.with? 'ssh'
|
|
|
|
args << "--with-libmetalink" if build.with? 'libmetalink'
|
|
|
|
args << "--enable-ares=#{Formula.factory("c-ares").opt_prefix}" if build.with? 'ares'
|
2013-10-23 16:46:43 +00:00
|
|
|
args << "--with-gssapi" if build.with? 'gssapi'
|
2012-04-04 06:28:44 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2009-12-17 19:55:27 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|