summaryrefslogtreecommitdiff
path: root/core/wget
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/wget
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/wget')
-rw-r--r--core/wget/.footprint14
-rw-r--r--core/wget/.signature6
-rw-r--r--core/wget/MAKEPKG51
3 files changed, 71 insertions, 0 deletions
diff --git a/core/wget/.footprint b/core/wget/.footprint
new file mode 100644
index 0000000..59bcfeb
--- /dev/null
+++ b/core/wget/.footprint
@@ -0,0 +1,14 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/wget2
+lrwxrwxrwx root/root bin/wget -> wget2
+drwxr-xr-x root/root lib/
+-rw-r--r-- root/root lib/libwget.a
+-rwxr-xr-x root/root lib/libwget.so.4.0.0
+lrwxrwxrwx root/root lib/libwget.so -> libwget.so.4.0.0
+lrwxrwxrwx root/root lib/libwget.so.4 -> libwget.so.4.0.0
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/libwget.pc
+drwxr-xr-x root/root usr/
+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
diff --git a/core/wget/.signature b/core/wget/.signature
new file mode 100644
index 0000000..8001435
--- /dev/null
+++ b/core/wget/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mO87OmCd3BRU2f3Z+SxmfDRCkbGk/S2EwSyMlWBI7UMV1PvwLeM/g5rRZqqthDKey3h8lzTe3w9aq/x3Qa1y/Ak=
+
+SHA256 (MAKEPKG) = be47c6b06bd388508078a827418787cd112a805cf302590589ebed354fa01d9c
+SHA256 (.footprint) = 00d7b6f9681d86647a0dec23d24d7483b405f543d619584a9c26a2bfc3314bba
+SHA256 (wget2-2.2.1.tar.gz) = d7544b13e37f18e601244fce5f5f40688ac1d6ab9541e0fbb01a32ee1fb447b4
+SHA256 (wget#2.2.1-2.pkg.tar.gz) = 33c9edc515cf30db1944b8cddf58bfcb0dad6bea84b2deebe985ba4f6c3318b1
diff --git a/core/wget/MAKEPKG b/core/wget/MAKEPKG
new file mode 100644
index 0000000..5af4192
--- /dev/null
+++ b/core/wget/MAKEPKG
@@ -0,0 +1,51 @@
+#!/bin/mkpkg
+# description: Network downloader with HTTP/2 and parallel fetch support
+# url: https://gitlab.com/gnuwget/wget2
+
+name=wget
+_name=wget2
+version=2.2.1
+release=2
+depends=(libressl zlib zstd)
+makedeps=()
+lockbox=(yes)
+source=(https://ftp.gnu.org/gnu/wget/wget2-$version.tar.gz)
+sha256sums=(
+ "d7544b13e37f18e601244fce5f5f40688ac1d6ab9541e0fbb01a32ee1fb447b4"
+)
+
+build() {
+ cd $_name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --bindir=/bin \
+ --libdir=/lib \
+ --with-ssl=openssl \
+ --without-libpsl \
+ --without-libhsts \
+ --without-libnghttp2 \
+ --without-gpgme \
+ --without-libpcre2 \
+ --without-libpcre \
+ --without-libmicrohttpd \
+ --without-libidn2 \
+ --without-libidn \
+ --without-plugin-support \
+ --disable-nls \
+ --disable-doc
+
+ make
+ make DESTDIR=$PKG install
+
+ rm $PKG/bin/wget2_noinstall
+ ln -sf wget2 $PKG/bin/wget
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh
+