47 lines
No EOL
1 KiB
Text
Executable file
47 lines
No EOL
1 KiB
Text
Executable file
app=curl
|
|
version=7.86.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 libpsl"
|
|
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="
|
|
e62e8235d660c90c181f5ce49869f306b14d5c9d08a3cf541a021eb29937dba6b76597f822da6564c4514a58ae827e9f83094fd6327b3e3a8f3231ff93c3395f curl-7.86.0.tar.lz
|
|
" |