The Wget package contains a utility useful for non-interactive downloading of files from the Web. It is used in pages in this book, BLFS, and SLFS that lump packages together, like downloading Xorg or KDE packages, or when a package depends on a wealth of submodules.
GnuTLS-3.8.10, libidn2-2.3.8, libunistring-1.3, and pcre2-10.45
Install Wget by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc \ --with-ssl=openssl && make
Now, as the root
user:
make install
Run ./configure --help for a full list of options.
--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.