core/curl/Pkgfile

23 lines
636 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
2020-09-11 10:50:40 +02:00
# Depends on: openssl zlib zstd
2006-02-23 16:26:10 +01:00
name=curl
2021-02-03 17:46:39 +01:00
version=7.75.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
2006-07-03 08:22:29 +02:00
./configure --prefix=/usr \
--enable-ipv6 \
2021-02-03 17:46:39 +01:00
--without-libidn2 \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
make -C docs/libcurl DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}