29 lines
593 B
Plaintext
29 lines
593 B
Plaintext
# Description: A network utility for downloading content from the Web
|
|
# URL: https://www.gnu.org/software/wget/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: libnghttp2 libpcre2 openssl zstd
|
|
|
|
name=wget2
|
|
version=2.1.0
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/wget/$name-$version.tar.lz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-ssl=openssl \
|
|
--enable-fuzzing \
|
|
--disable-nls \
|
|
--disable-doc \
|
|
--disable-rpath \
|
|
--disable-manylibs
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -f $PKG/usr/bin/wget2_noinstall
|
|
}
|