diff options
| author | Jack Nagel | 2011-08-30 20:10:58 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-08-30 20:11:09 -0500 |
| commit | 4a8587acc53e03f2b6af7f534777bbf3476974e5 (patch) | |
| tree | 973449dae406189220a3c8c66c4a3ec1ad31e704 /Library/Formula/wget.rb | |
| parent | db40cdbd4d88233932ebd27d4b763910ff87cebc (diff) | |
| download | homebrew-4a8587acc53e03f2b6af7f534777bbf3476974e5.tar.bz2 | |
wget 1.13.3
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/wget.rb')
| -rw-r--r-- | Library/Formula/wget.rb | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Library/Formula/wget.rb b/Library/Formula/wget.rb index 5eda029f1..cdad430d5 100644 --- a/Library/Formula/wget.rb +++ b/Library/Formula/wget.rb @@ -2,8 +2,8 @@ require 'formula' class Wget < Formula homepage 'http://www.gnu.org/software/wget/' - url 'http://ftp.gnu.org/gnu/wget/wget-1.12.tar.bz2' - md5 '308a5476fc096a8a525d07279a6f6aa3' + url 'http://ftp.gnu.org/gnu/wget/wget-1.13.3.tar.gz' + md5 '2524f82296d51ef444e96e3a28bb4fbb' depends_on "openssl" if MacOS.leopard? depends_on "libidn" if ARGV.include? "--enable-iri" @@ -12,15 +12,11 @@ class Wget < Formula [["--enable-iri", "Enable iri support."]] end - def patches - # Fixes annoying TLS Subject Alternative Name bug encountered especially when using GitHub - # Remove when 1.12.1 is released. - # See https://savannah.gnu.org/bugs/?23934 - "http://savannah.gnu.org/file/wget-1.12-subjectAltNames.diff?file_id=18828" - end - def install - args = ["--disable-debug", "--prefix=#{prefix}"] + args = ["--disable-debug", + "--prefix=#{prefix}", + "--with-ssl=openssl"] + args << "--disable-iri" unless ARGV.include? "--enable-iri" system "./configure", *args |
