diff options
author | Cem Keylan <cem@ckyln.com> | 2023-02-03 16:43:44 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2023-02-03 16:43:44 +0100 |
commit | 808a7e8170b3c8e998187ae0d422be63ac4d7e84 (patch) | |
tree | 8ead5c90122e8b17b4338d3c03605df309fbdc29 /extra/wget | |
parent | 11bfe8706c550faa76cfb1066a9a50281e4ca9e3 (diff) | |
download | repository-808a7e8170b3c8e998187ae0d422be63ac4d7e84.tar.gz |
wget: add new package at 2.0.1
Diffstat (limited to 'extra/wget')
-rwxr-xr-x | extra/wget/build | 20 | ||||
-rw-r--r-- | extra/wget/checksums | 2 | ||||
-rw-r--r-- | extra/wget/depends | 5 | ||||
-rw-r--r-- | extra/wget/meta | 3 | ||||
-rw-r--r-- | extra/wget/sources | 1 | ||||
-rw-r--r-- | extra/wget/version | 1 |
6 files changed, 32 insertions, 0 deletions
diff --git a/extra/wget/build b/extra/wget/build new file mode 100755 index 00000000..6755ed24 --- /dev/null +++ b/extra/wget/build @@ -0,0 +1,20 @@ +#!/bin/sh -e + +export PKG_CONFIG="pkgconf --static" + +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --disable-nls \ + --disable-rpath \ + --without-libpsl \ + --without-libpcre \ + --without-libpcre2 \ + --without-gpgme \ + --without-libnghttp2 \ + --without-libmicrohttpd \ + --without-plugin-support \ + --with-ssl=openssl + +make LDFLAGS="$LDFLAGS -all-static" +make DESTDIR="$1" install diff --git a/extra/wget/checksums b/extra/wget/checksums new file mode 100644 index 00000000..6dcb9d25 --- /dev/null +++ b/extra/wget/checksums @@ -0,0 +1,2 @@ +%BLAKE3 +d619a9fac9dab6bb907c264235952add2e2792d6beef2463bcbe92056373891a wget2-2.0.1.tar.gz diff --git a/extra/wget/depends b/extra/wget/depends new file mode 100644 index 00000000..fdcf0ff2 --- /dev/null +++ b/extra/wget/depends @@ -0,0 +1,5 @@ +bzip2 make +libressl +xz make +zlib make +zstd make diff --git a/extra/wget/meta b/extra/wget/meta new file mode 100644 index 00000000..ce1cece7 --- /dev/null +++ b/extra/wget/meta @@ -0,0 +1,3 @@ +description: GNU wget download utility +license: GPL-3.0-or-later +maintainer: Cem Keylan <cem@carbslinux.org> diff --git a/extra/wget/sources b/extra/wget/sources new file mode 100644 index 00000000..dc936adb --- /dev/null +++ b/extra/wget/sources @@ -0,0 +1 @@ +https://ftp.gnu.org/gnu/wget/wget2-2.0.1.tar.gz diff --git a/extra/wget/version b/extra/wget/version new file mode 100644 index 00000000..4a473510 --- /dev/null +++ b/extra/wget/version @@ -0,0 +1 @@ +2.0.1 1 |