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-8.1 platform.
Download (HTTP): https://ftp.gnu.org/gnu/wget/wget-1.19.1.tar.xz
Download (FTP): ftp://ftp.gnu.org/gnu/wget/wget-1.19.1.tar.xz
Download MD5 sum: d30d82186b93fcabb4116ff513bfa9bd
Download size: 2.0 MB
Estimated disk space required: 32 MB (with tests)
Estimated build time: 0.4 SBU (with tests)
Certificate Authority Certificates (runtime), OpenSSL-1.1.0f, and Python-3.6.2
GnuTLS-3.5.14, GPGME-1.9.0, libidn-1.33, PCRE-8.41, Valgrind-3.13.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 \ --with-ssl=openssl && make
To test the results, issue: make check. The HTTPS tests fail if 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.1.0f
instead of GnuTLS-3.5.14.
--enable-valgrind-tests
: This allows
the tests to be run under valgrind.
Last updated on 2017-08-16 21:41:37 -0700