abuild (549B)
1 name=curl 2 version=8.16.0 3 release=1 4 source="https://$name.se/download/$name-$version.tar.xz" 5 6 build() { 7 mkdir bin 8 echo "#!/bin/sh 9 /bin/true 10 " > bin/perl 11 chmod +x bin/perl 12 export PATH=$PWD/bin:$PATH 13 14 ./configure \ 15 --prefix=/usr \ 16 --with-openssl \ 17 --enable-threaded-resolver \ 18 --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ 19 --without-brotli \ 20 --without-libidn2 \ 21 --without-libpsl \ 22 --without-librtmp \ 23 --without-nghttp2 \ 24 --without-zstd \ 25 --disable-ldap \ 26 --disable-manual \ 27 --disable-ares 28 make 29 make install 30 }