From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- opt/curl/MAKEPKG | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 opt/curl/MAKEPKG (limited to 'opt/curl/MAKEPKG') diff --git a/opt/curl/MAKEPKG b/opt/curl/MAKEPKG new file mode 100644 index 0000000..24bbd5c --- /dev/null +++ b/opt/curl/MAKEPKG @@ -0,0 +1,44 @@ +#!/bin/mkpkg +# description: Command line tool and library for transferring data with URLs +# url: https://curl.se/ + +name=curl +version=8.22.0 +release=1 +source=(https://curl.se/download/$name-$version.tar.xz) +depends=(libressl zlib zstd brotli) + +sha256sums=( + "f7ef3ae8a22e521f289803fe93543eb64c329b58aa73a9e224dfd915a2a5f4f7" +) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-static \ + --disable-docs \ + --disable-manual \ + --enable-threaded-resolver \ + --enable-ipv6 \ + --with-openssl \ + --with-ca-bundle=/etc/ssl/cert.pem \ + --with-brotli \ + --with-zstd \ + --without-libpsl \ + --without-librtmp \ + --without-libidn2 + + make + make DESTDIR=$PKG install + rm -f $PKG/usr/lib/*.la + rm -rf $PKG/usr/share +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh -- cgit v1.3.1