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.3 platform.
Download (HTTP): https://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.gz
Download (FTP): ftp://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.gz
Download MD5 sum: 2db6f03d655041f82eb64b8c8a1fa7da
Download size: 4.2 MB
Estimated disk space required: 27 MB (add 8 MB for tests)
Estimated build time: 0.3 SBU (add 0.2 SBU for tests)
make-ca-0.9 (runtime)
gnutls, gpgme, perl-http-daemon (for the test suite), perl-io-socket-ssl" (for the test suite), libidn2, libpsl, pcre, python (for the test suite), and valgrind (for the test suite)
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. Nine tests fail if python2 was not built with SSL support.
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 instead of
gnutls.
--enable-valgrind-tests
: This allows
the tests to be run under valgrind.
Last updated on 2018-09-21 18:10:28 -0700