blob: 2ad9dba586d608a49c6a64da4597d0e55efa2bc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
require 'formula'
# NOTE: Configure will fail if using awk 20110810 from dupes.
# Upstream issue: https://savannah.gnu.org/bugs/index.php?37063
class Wget < Formula
homepage 'http://www.gnu.org/software/wget/'
url 'http://ftpmirror.gnu.org/wget/wget-1.14.tar.gz'
mirror 'http://ftp.gnu.org/gnu/wget/wget-1.14.tar.gz'
sha1 'c487bce740b3a1847a35fb29b5c6700c46f639b8'
head 'git://git.savannah.gnu.org/wget.git'
option "enable-iri", "Enable iri support"
option "enable-debug", "Build with debug support"
depends_on "openssl" if MacOS.leopard?
depends_on "libidn" if build.include? "enable-iri"
if build.head?
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "gettext"
end
def install
system "./bootstrap" if build.head?
args = ["--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--with-ssl=openssl"]
args << "--disable-debug" unless build.include? "enable-debug"
args << "--disable-iri" unless build.include? "enable-iri"
system "./configure", *args
system "make install"
end
def test
system "#{bin}/wget", "-O", "-", "www.google.com"
end
end
|