From 8df1d35909ec2d57a6845f5b2c26ee1e83cfd032 Mon Sep 17 00:00:00 2001 From: Woodpecker CI Date: Tue, 3 Jun 2025 14:32:34 +0000 Subject: Woodpecker CI 5171f1fdd74e7137c305450dd69a29fa5be4143f [SKIP CI] --- curl/abuild | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 curl/abuild (limited to 'curl/abuild') diff --git a/curl/abuild b/curl/abuild new file mode 100644 index 00000000..6853392e --- /dev/null +++ b/curl/abuild @@ -0,0 +1,41 @@ +name=curl +version=8.13.0 +release=1 +source="https://$name.se/download/$name-$version.tar.xz" +build_opt=" + --with-openssl + --enable-threaded-resolver + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt + --without-brotli + --without-libidn2 + --without-libpsl + --without-librtmp + --without-nghttp2 + --without-zstd + --disable-manual" + +build() { + mkdir bin + echo "#!/bin/sh + /bin/true + " > bin/perl + chmod +x bin/perl + export PATH=$PWD/bin:$PATH + + ./configure \ + --prefix=/usr \ + --with-openssl \ + --enable-threaded-resolver \ + --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ + --without-brotli \ + --without-libidn2 \ + --without-libpsl \ + --without-librtmp \ + --without-nghttp2 \ + --without-zstd \ + --disable-ldap \ + --disable-manual \ + --disable-ares + make + make install +} -- cgit v1.2.3