mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
111 lines
2.7 KiB
Plaintext
111 lines
2.7 KiB
Plaintext
# Contributor: Sergei Lukin <sergej.lukin@gmail.com>
|
|
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=curl
|
|
pkgver=7.60.0
|
|
pkgrel=1
|
|
pkgdesc="URL retrival utility and library"
|
|
url="https://curl.haxx.se"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="ca-certificates"
|
|
depends_dev="libressl-dev libssh2-dev nghttp2-dev zlib-dev"
|
|
checkdepends="python2"
|
|
makedepends="$depends_dev autoconf automake groff libtool perl"
|
|
subpackages="$pkgname-dbg $pkgname-doc $pkgname-dev libcurl"
|
|
source="https://curl.haxx.se/download/$pkgname-$pkgver.tar.xz
|
|
0001-openssl-fix-build-with-libressl-2.7.patch
|
|
use-OPENSSL_config.patch
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
# secfixes:
|
|
# 7.60.0-r0:
|
|
# - CVE-2018-1000300
|
|
# - CVE-2018-1000301
|
|
# 7.59.0-r0:
|
|
# - CVE-2018-1000120
|
|
# - CVE-2018-1000121
|
|
# - CVE-2018-1000122
|
|
# 7.57.0-r0:
|
|
# - CVE-2017-8816
|
|
# - CVE-2017-8817
|
|
# - CVE-2017-8818
|
|
# 7.56.1-r0:
|
|
# - CVE-2017-1000257
|
|
# 7.55.0-r0:
|
|
# - CVE-2017-1000099
|
|
# - CVE-2017-1000100
|
|
# - CVE-2017-1000101
|
|
# 7.54.0-r0:
|
|
# - CVE-2017-7468
|
|
# 7.53.1-r2:
|
|
# - CVE-2017-7407
|
|
# 7.53.0:
|
|
# - CVE-2017-2629
|
|
# 7.52.1:
|
|
# - CVE-2016-9594
|
|
# 7.51.0:
|
|
# - CVE-2016-8615
|
|
# - CVE-2016-8616
|
|
# - CVE-2016-8617
|
|
# - CVE-2016-8618
|
|
# - CVE-2016-8619
|
|
# - CVE-2016-8620
|
|
# - CVE-2016-8621
|
|
# - CVE-2016-8622
|
|
# - CVE-2016-8623
|
|
# - CVE-2016-8624
|
|
# - CVE-2016-8625
|
|
# 7.50.3:
|
|
# - CVE-2016-7167
|
|
# 7.50.2:
|
|
# - CVE-2016-7141
|
|
# 7.50.1:
|
|
# - CVE-2016-5419
|
|
# - CVE-2016-5420
|
|
# - CVE-2016-5421
|
|
# 7.36.0:
|
|
# - CVE-2014-0138
|
|
# - CVE-2014-0139
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
autoreconf -vif
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-ipv6 \
|
|
--enable-unix-sockets \
|
|
--without-libidn \
|
|
--without-libidn2 \
|
|
--with-libssh2 \
|
|
--with-nghttp2 \
|
|
--disable-ldap \
|
|
--with-pic
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make install DESTDIR="$pkgdir"
|
|
}
|
|
|
|
libcurl() {
|
|
pkgdesc="The multiprotocol file transfer library"
|
|
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/lib "$subpkgdir"/usr
|
|
}
|
|
|
|
sha512sums="96a0c32ca846a76bba75e9e560ad4c15df79540992ed1a83713095be94ddba039f289bda9678762fd79fb9691fe810735178fb9dc970c37012dff96b8ce08abf curl-7.60.0.tar.xz
|
|
16c9b54cfa996a61278c0a899840be9e42477661ff6d69d6a772671aeb50a597e9de9328ba3c0a5cb71fa073e4a58db5f3962aab7636a9f1327cad343ff05ae9 0001-openssl-fix-build-with-libressl-2.7.patch
|
|
708527e73f9512c50e2250ca26786ba8994dc05fd2e362c1feb274e251219fb4bfc97e7e7722aa12424ccaf4c511d90d8820561c82a24f103b9ee2b743f4be28 use-OPENSSL_config.patch"
|