diff options
| author | Jack Nagel | 2011-08-11 20:21:41 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-12 12:12:41 -0700 |
| commit | 4d39ab424fad311b8cc03ea0e9eb3029ca6af91c (patch) | |
| tree | 44941b0dfe24d3e5c7976d19c4e8e39df47cf1be /Library/Formula | |
| parent | 3daca614aac0bba6e01620ea65feab8e673df1f2 (diff) | |
| download | homebrew-4d39ab424fad311b8cc03ea0e9eb3029ca6af91c.tar.bz2 | |
wget 1.13
Apparently we have to specify '--with-ssl=openssl', otherwise the
configure script tries to find GnuTLS and aborts if it isn't present.
But hey, we don't need that ugly patch anymore.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -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..fc913759a 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.tar.gz' + md5 'd3698837e6a9567ca9be10f115989940' 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", + "--disable-dependency-tracking", + "--with-ssl=openssl", + "--prefix=#{prefix}"] args << "--disable-iri" unless ARGV.include? "--enable-iri" system "./configure", *args |
