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.0 platform.
Download (HTTP): http://ftp.gnu.org/gnu/wget/wget-1.13.4.tar.xz
Download (FTP): ftp://ftp.gnu.org/gnu/wget/wget-1.13.4.tar.xz
Download MD5 sum: 7f518b3a71e9efd330e9a0c3714f8463
Download size: 1.4 MB
Estimated disk space required: 18 MB
Estimated build time: 0.4 SBU
OpenSSL-1.0.0e or GnuTLS-3.0.7, libidn-1.22, Perl Module HTTP::Server (for the test suite) (see the standard Perl build and installation instructions), and Dante
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.
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 work with OpenSSL-1.0.0e. It can be omitted if GnuTLS-3.0.7 is found or the https protocol is
not needed.
Last updated on 2011-11-10 03:24:42 +0000