core/curl/Pkgfile

25 lines
564 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
# Depends on: openssl zlib zstd
2006-02-23 16:26:10 +01:00
name=curl
2021-11-10 15:42:23 +01:00
version=7.80.0
2017-02-22 21:28:44 +01:00
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 \
--without-libidn2 \
--with-openssl \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
make
make DESTDIR=$PKG install
make -C docs/libcurl DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}