summaryrefslogtreecommitdiff
path: root/repo/wget
diff options
context:
space:
mode:
Diffstat (limited to 'repo/wget')
-rw-r--r--repo/wget/wget.xibuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/wget/wget.xibuild b/repo/wget/wget.xibuild
new file mode 100644
index 0000000..a5ec664
--- /dev/null
+++ b/repo/wget/wget.xibuild
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+MAKEDEPS="make "
+DEPS="musl gnutls libidn libpsl nettle util-linux pcre2 zlib cacerts"
+
+PKG_VER=1.21.2
+SOURCE=https://ftp.gnu.org/gnu/wget/wget-$PKG_VER.tar.gz
+DESC="A utility for transfering files with URL syntax"
+
+build () {
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --with-ssl=openssl &&
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}