wget2: initial release, version 2.0.0

This commit is contained in:
Juergen Daubert 2022-01-13 14:19:37 +01:00
parent 406ed65b96
commit 7f1cd88f12
3 changed files with 48 additions and 0 deletions

14
wget2/.footprint Normal file
View File

@ -0,0 +1,14 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/wget2
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/wget.h
-rw-r--r-- root/root usr/include/wgetver.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libwget.a
-rwxr-xr-x root/root usr/lib/libwget.la
lrwxrwxrwx root/root usr/lib/libwget.so -> libwget.so.1.0.0
lrwxrwxrwx root/root usr/lib/libwget.so.1 -> libwget.so.1.0.0
-rwxr-xr-x root/root usr/lib/libwget.so.1.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libwget.pc

5
wget2/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/TXUr6VMR6+cumH3xdBGk5Lmqm/B/DIcs+j04OC5mvm3bjn8wWVV+SDUhC92bW10xJD8rAcf6maf7Bgvo1MlUgw=
SHA256 (Pkgfile) = 2c38f1166185244a56ec13f13b60738f628975050109728d733ebcc5179ca62c
SHA256 (.footprint) = dea5a1c5c7e6996a67c64cfaddbe7994b77199572bae658f975dea7da0ebdba9
SHA256 (wget2-2.0.0.tar.lz) = da95b1477fa4ede1ac712f179c1354d9624fbc91e778d89cf8d2ae46aa15e3d2

29
wget2/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# 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: libpcre2 openssl util-linux zlib
name=wget2
version=2.0.0
release=1
source=(https://ftp.gnu.org/gnu/wget/$name-$version.tar.lz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--with-openssl \
--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
}