Juergen Daubert
9ee4516922
includes a security fix for CVE-2017-1000254, see - https://curl.haxx.se/docs/adv_20171004.html - https://curl.haxx.se/changes.html
23 lines
630 B
Plaintext
23 lines
630 B
Plaintext
# Description: A tool for transfering files with URL syntax
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# URL: http://curl.haxx.se
|
|
# Depends on: openssl, zlib
|
|
|
|
name=curl
|
|
version=7.56.0
|
|
release=1
|
|
source=(http://curl.haxx.se/download/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--enable-ipv6 \
|
|
--without-libidn \
|
|
--without-cyassl \
|
|
--enable-threaded-resolver \
|
|
--with-ca-bundle=/etc/ssl/cert.pem
|
|
make
|
|
make DESTDIR=$PKG install
|
|
make -C docs/libcurl DESTDIR=$PKG install
|
|
}
|