blob: 0161c15017163c7ff7458c9a040a6a3550a55e6b (
plain)
1 # Description: A network utility for downloading content from the Web
2 # URL: https://www.gnu.org/software/wget/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: libnghttp2 libpcre2 openssl zstd
5
6 name=wget2
7 version=2.0.1
8 release=1
9 source=(https://ftp.gnu.org/gnu/wget/$name-$version.tar.lz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --sysconfdir=/etc \
17 --with-ssl=openssl \
18 --enable-fuzzing \
19 --disable-nls \
20 --disable-doc \
21 --disable-rpath \
22 --disable-manylibs
23
24 make
25 make DESTDIR=$PKG install
26
27 rm -f $PKG/usr/bin/wget2_noinstall
28 }
|