The Wget package contains a utility useful for non-interactive downloading of files from the Web.
This package is known to build and work properly using an LFS-7.10 platform.
Download (HTTP): http://ftp.gnu.org/gnu/wget/wget-1.18.tar.xz
Download (FTP): ftp://ftp.gnu.org/gnu/wget/wget-1.18.tar.xz
Download MD5 sum: af9ca95a4bb8ac4a9bf10aeae66fa5ec
Download size: 1.8 MB
Estimated disk space required: 25 MB (with tests)
Estimated build time: 0.5 SBU (with tests)
libidn-1.33, OpenSSL-1.0.2h, PCRE-8.39, Valgrind-3.11.0 (optional for the test suite), IO::Socket::SSL, HTTP::Daemon (both required for the test suite), and libpsl
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/wget
Install Wget by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc && make
To test the results, issue: make check. The HTTPS tests fail if openssl is used and valgrind is enabled.
Now, as the root
user:
make install
--sysconfdir=/etc
: This
relocates the configuration file from /usr/etc
to /etc
.
--with-ssl=openssl
: This allows the
program to use OpenSSL-1.0.2h instead of GnuTLS-3.5.3.
--enable-valgrind-tests
: This allows
the tests to be run under valgrind.
/etc/wgetrc
and ~/.wgetrc
If you have installed the Certificate Authority
Certificates and you want Wget to use them, as the root
user:
echo ca-directory=/etc/ssl/certs >> /etc/wgetrc
Last updated on 2016-08-24 18:13:01 -0700