core/curl/Pkgfile
Fredrik Rinnestam 53c6722a1e [notify] curl: updated to 7.51.0
Resolves:

    CVE-2016-8615: cookie injection for other servers
    CVE-2016-8616: case insensitive password comparison
    CVE-2016-8617: OOB write via unchecked multiplication
    CVE-2016-8618: double-free in curl_maprintf
    CVE-2016-8619: double-free in krb5 code
    CVE-2016-8620: glob parser write/read out of bounds
    CVE-2016-8621: curl_getdate read out of bounds
    CVE-2016-8622: URL unescape heap overflow via integer truncation
    CVE-2016-8623: Use-after-free via shared cookies
    CVE-2016-8624: invalid URL parsing with '#'
    CVE-2016-8625: IDNA 2003 makes curl use wrong host

https://curl.haxx.se/changes.html
2016-11-02 09:02:09 +01:00

22 lines
586 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.51.0
release=1
source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
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
}