68 lines
2.2 KiB
Ruby
68 lines
2.2 KiB
Ruby
# NOTE: Configure will fail if using awk 20110810 from dupes.
|
|
# Upstream issue: https://savannah.gnu.org/bugs/index.php?37063
|
|
class Wget < Formula
|
|
desc "Internet file retriever"
|
|
homepage "https://www.gnu.org/software/wget/"
|
|
url "http://ftpmirror.gnu.org/wget/wget-1.17.1.tar.xz"
|
|
mirror "https://ftp.gnu.org/gnu/wget/wget-1.17.1.tar.xz"
|
|
sha256 "fe559b61eb9cc01635ac6206a14e02cb51591838c35fa83c7a4aacae0bdd97c9"
|
|
|
|
bottle do
|
|
revision 1
|
|
sha256 "a0c2cbc5ca625454bc7d85371d07cfec71efa64cc29f00ec8fe9f6f89cbfd7b9" => :el_capitan
|
|
sha256 "f0fa6b712b2ed89ff687f1c6ef47188511354c3dbd0d32cac8453c88e1775a9e" => :yosemite
|
|
sha256 "049e984bf8c795dcdeccabebc0fd3fd4c2c3e65b0215fe2fcaf2424c1f00b1e3" => :mavericks
|
|
end
|
|
|
|
head do
|
|
url "git://git.savannah.gnu.org/wget.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "xz" => :build
|
|
depends_on "gettext"
|
|
end
|
|
|
|
deprecated_option "enable-iri" => "with-iri"
|
|
deprecated_option "enable-debug" => "with-debug"
|
|
|
|
option "with-iri", "Enable iri support"
|
|
option "with-debug", "Build with debug support"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pod2man" => :build if MacOS.version <= :snow_leopard
|
|
depends_on "openssl" => :recommended
|
|
depends_on "libressl" => :optional
|
|
depends_on "libidn" if build.with? "iri"
|
|
depends_on "pcre" => :optional
|
|
depends_on "libmetalink" => :optional
|
|
depends_on "gpgme" => :optional
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}
|
|
--with-ssl=openssl
|
|
]
|
|
|
|
if build.with? "libressl"
|
|
args << "--with-libssl-prefix=#{Formula["libressl"].opt_prefix}"
|
|
else
|
|
args << "--with-libssl-prefix=#{Formula["openssl"].opt_prefix}"
|
|
end
|
|
|
|
args << "--disable-debug" if build.without? "debug"
|
|
args << "--disable-iri" if build.without? "iri"
|
|
args << "--disable-pcre" if build.without? "pcre"
|
|
args << "--with-metalink" if build.with? "libmetalink"
|
|
args << "--with-gpgme-prefix=#{Formula["gpgme"].opt_prefix}" if build.with? "gpgme"
|
|
|
|
system "./bootstrap" if build.head?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"wget", "-O", "-", "https://google.com"
|
|
end
|
|
end
|