summaryrefslogtreecommitdiff
path: root/repo/util/curl
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util/curl')
-rw-r--r--repo/util/curl/curl.xibuild21
1 files changed, 0 insertions, 21 deletions
diff --git a/repo/util/curl/curl.xibuild b/repo/util/curl/curl.xibuild
deleted file mode 100644
index 957311b..0000000
--- a/repo/util/curl/curl.xibuild
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="openssl zlib zstd libnghttp libpsl cacerts"
-
-PKG_VER=7.80.0
-SOURCE=https://curl.se/download/curl-$PKG_VER.tar.xz
-DESC="A utility for transfering files with URL syntax"
-
-build () {
- ./configure --prefix=/usr \
- --disable-static \
- --with-openssl \
- --enable-threaded-resolver \
- --with-ca-path=/etc/ssl/certs &&
- make
-}
-
-package () {
- make DESTDIR=$PKG_DEST install
-}