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.2 platform.
Download (HTTP): https://ftp.gnu.org/gnu/wget/wget-1.19.4.tar.gz
Download (FTP): ftp://ftp.gnu.org/gnu/wget/wget-1.19.4.tar.gz
Download MD5 sum: a2a2c1dc4ac5003fc25a8e60b4a9464e
Download size: 4.1 MB
Estimated disk space required: 25 MB (add 4 MB for tests)
Estimated build time: 0.2 SBU (add 0.2 SBU for tests)
make-ca-0.7 (runtime)
GnuTLS-3.6.2, GPGME-1.10.0, libidn-1.33, PCRE-8.41, Python-2.7.14 (built with ssl; for the test suite), Valgrind-3.13.0 (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. 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-3.6.2.
--enable-valgrind-tests
: This allows
the tests to be run under valgrind.
Last updated on 2018-02-24 15:05:35 -0800