summaryrefslogtreecommitdiff
path: root/wget2
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2022-01-13 14:19:37 +0100
committerJuergen Daubert <jue@jue.li>2022-01-13 14:19:37 +0100
commit7f1cd88f12f9753e8b6015e259b2c05abb5f14fc (patch)
treef2ae59828314bf1b5a303df02a426037916093fc /wget2
parent406ed65b968ce0600ba6691af4777731be5249d1 (diff)
downloadopt-7f1cd88f12f9753e8b6015e259b2c05abb5f14fc.tar.gz
opt-7f1cd88f12f9753e8b6015e259b2c05abb5f14fc.tar.xz
wget2: initial release, version 2.0.0
Diffstat (limited to 'wget2')
-rw-r--r--wget2/.footprint14
-rw-r--r--wget2/.signature5
-rw-r--r--wget2/Pkgfile29
3 files changed, 48 insertions, 0 deletions
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
+}

Generated by cgit