core/curl/Pkgfile

29 lines
654 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A tool for transfering files with URL syntax
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://curl.haxx.se
2023-09-13 18:09:26 +02:00
# Depends on: libnghttp2 openssl zstd
2006-02-23 16:26:10 +01:00
name=curl
2023-12-06 09:53:55 +01:00
version=8.5.0
release=1
source=(https://curl.haxx.se/download/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-ipv6 \
--enable-threaded-resolver \
2022-01-09 03:49:59 +01:00
--with-ca-bundle=/etc/ssl/cert.pem \
--with-openssl \
2022-05-07 13:45:52 +02:00
--with-nghttp2 \
--disable-ldap{,s} \
--without-brotli \
2022-01-09 03:49:59 +01:00
--without-libidn2 \
--without-libpsl \
--without-librtmp
make
make DESTDIR=$PKG install
make -C docs/libcurl DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}