From 7f1cd88f12f9753e8b6015e259b2c05abb5f14fc Mon Sep 17 00:00:00 2001 From: Juergen Daubert Date: Thu, 13 Jan 2022 14:19:37 +0100 Subject: [PATCH] wget2: initial release, version 2.0.0 --- wget2/.footprint | 14 ++++++++++++++ wget2/.signature | 5 +++++ wget2/Pkgfile | 29 +++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 wget2/.footprint create mode 100644 wget2/.signature create mode 100644 wget2/Pkgfile diff --git a/wget2/.footprint b/wget2/.footprint new file mode 100644 index 000000000..4a90569a4 --- /dev/null +++ b/wget2/.footprint @@ -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 diff --git a/wget2/.signature b/wget2/.signature new file mode 100644 index 000000000..b789bb35b --- /dev/null +++ b/wget2/.signature @@ -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 diff --git a/wget2/Pkgfile b/wget2/Pkgfile new file mode 100644 index 000000000..7c59c3adb --- /dev/null +++ b/wget2/Pkgfile @@ -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 +}