Upgraded base/eudev to 3.2.11 Removed double quotes in mversion variable in base/faad2 Only copy LICENSE to base/libical Upgraded base/lzip to 1.23 in addition to adding CXXFLAGS variable Upgraded base/lzlib to 1.13 in addition to adding CFLAGS variable Upgraded meson 0.63.2 Discarded CFLAGS and LDFLAGS variables and disabled building of static libraries in base/mpfr, converted source to lzip and updated SHA512 checksums Uncommented fixbuilddirpermissions function call in base/mtools Fixed code for compiling getconf, getent and iconv binaries in base/musl Added subshell to compile library in base/nghttp2 Added OPTFLAGS and fixed miscellaneous code in base/p7zip Added CFLAGS as an argument to make in base/pigz Added CXXFLAGS as an argument to configure in base/plzip Upgraded base/qpdf to 11.1.0 Only copy LICENSE to base/sed Upgraded base/tarlz to 0.23
47 lines
1 KiB
Text
Executable file
47 lines
1 KiB
Text
Executable file
app=curl
|
|
version=7.84.0
|
|
build=1sml
|
|
homepage="https://curl.se/"
|
|
download="https://curl.se/download/curl-$version.tar.xz"
|
|
desc="Command line URL data transfer tool"
|
|
requires="zlib openssl brotli libssh2 libidn2 nghttp2 libunistring"
|
|
preservestaticlibs=1
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
./configure \
|
|
--prefix="" \
|
|
--sysconfdir=/etc \
|
|
--with-libssh2 \
|
|
--without-ca-bundle \
|
|
--with-ca-path=/etc/ssl/certs \
|
|
--with-openssl
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
( cd docs/libcurl
|
|
make install-man3 DESTDIR=$pkg
|
|
cd opts
|
|
make install-man3 DESTDIR=$pkg
|
|
)
|
|
|
|
# We don't ship the related perl script (yet):
|
|
rm -f $pkg/share/man/man1/mk-ca-bundle.1
|
|
|
|
strip -g $pkg/lib/libcurl.a
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
1ee8c9e4567b4850989489612ea8c4a9e0434827782be4e4b0e70c4543271b50c2ee3b1782d232793fb2bb24ff37d6e2b2243ff2519a0cc02ae902595f723f9f curl-7.84.0.tar.lz
|
|
"
|