The Wget package contains a utility useful for non-interactive downloading of files from the Web.
Download HTTP: https://mirror.csclub.uwaterloo.ca/gnu/wget/wget-1.25.0.tar.gz
Download SHA256 Sum: 766e48423e79359ea31e41db9e5c289675947a7fcf2efdcedb726ac9d0da3784
Download Size: 5,140 KB
Estimated Disk Space: 33.3M
Estimated Build Time: less than 0.5 SBU
Prepare Wget for compilation:
Now Configure the Package, issue:
./configure --prefix=/usr \
--sysconfdir=/etc \
--without-libpsl \
--without-libunistring-prefix \
--without-libgnutls-prefix \
--with-ssl=openssl \
--disable-dependency-tracking
To Compile the Package, issue:
make
Now Install the Package, issue:
make install
Download the certification bundle, issue:
mkdir -pv /etc/ssl/certs wget --no-check-certificate -P /etc/ssl/certs https://curl.se/ca/cacert-2026-03-19.pem cat > /etc/wgetrc << "EOF" no-clobber = on ca-certificate = "/etc/ssl/certs/cacert-2026-03-19.pem" EOF