From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/util/curl.xibuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 repo/util/curl.xibuild (limited to 'repo/util/curl.xibuild') diff --git a/repo/util/curl.xibuild b/repo/util/curl.xibuild new file mode 100644 index 0000000..b5da8e4 --- /dev/null +++ b/repo/util/curl.xibuild @@ -0,0 +1,17 @@ +#!/bin/bash + +DEPS=(cacerts openssl zlib zstd libnghttp libpsl) + +SOURCE=https://curl.se/download/curl-7.80.0.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 + + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1