eth0s/toolchain/42-wget

18 lines
438 B
Text
Raw Normal View History

name=wget
version=1.20.3
source=(https://ftp.gnu.org/gnu/wget/wget-$version.tar.gz)
2018-12-01 00:12:45 +08:00
build() {
cd $name-$version
2018-12-01 00:12:45 +08:00
./configure --prefix=/tools \
--with-ssl=openssl \
--without-libidn \
--without-libpsl \
--without-metalink \
--disable-pcre2
2018-12-01 00:12:45 +08:00
make
make install
echo "ca_certificate = /tools/etc/ssl/certs/ca-certificates.crt" > /tools/etc/wgetrc
}