diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-02 21:07:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-06 05:19:20 +0000 |
commit | a9e0e06d9e5116e23271a7052798a39abcf4c5b8 (patch) | |
tree | e87ee6fe4340f9732cefaeedc91c2d849306ca14 /main/curl/APKBUILD | |
parent | 27a4975926f9bf5374b52e1e62280c0438c84e1c (diff) | |
download | aports-a9e0e06d9e5116e23271a7052798a39abcf4c5b8.tar.bz2 aports-a9e0e06d9e5116e23271a7052798a39abcf4c5b8.tar.xz |
main/curl: rebuild against libressl 2.7
Diffstat (limited to 'main/curl/APKBUILD')
-rw-r--r-- | main/curl/APKBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/main/curl/APKBUILD b/main/curl/APKBUILD index 861bfae4b7..ec4650532c 100644 --- a/main/curl/APKBUILD +++ b/main/curl/APKBUILD @@ -4,15 +4,18 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=curl pkgver=7.59.0 -pkgrel=0 +pkgrel=1 pkgdesc="URL retrival utility and library" url="http://curl.haxx.se" arch="all" license="MIT" depends="ca-certificates" -makedepends="zlib-dev libressl-dev libssh2-dev groff perl nghttp2-dev" +depends_dev="zlib-dev libressl-dev libssh2-dev nghttp2-dev" +makedepends="$depends_dev groff perl automake autoconf libtool" subpackages="$pkgname-dbg $pkgname-doc $pkgname-dev libcurl" -source="http://curl.haxx.se/download/$pkgname-$pkgver.tar.xz" +source="http://curl.haxx.se/download/$pkgname-$pkgver.tar.xz + 0001-openssl-fix-build-with-libressl-2.7.patch + " # secfixes: # 7.59.0-r0: @@ -65,6 +68,7 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" + autoreconf -vif ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -96,4 +100,5 @@ libcurl() { mv "$pkgdir"/usr/lib "$subpkgdir"/usr } -sha512sums="6982a5950b564d6b2a4f4b96296b6db3db24a096acc68aa96966821b57f66362f5a69d9f2da762b5d2b1011a4a47478ebacaf05e26604f78bb013098749dd8a6 curl-7.59.0.tar.xz" +sha512sums="6982a5950b564d6b2a4f4b96296b6db3db24a096acc68aa96966821b57f66362f5a69d9f2da762b5d2b1011a4a47478ebacaf05e26604f78bb013098749dd8a6 curl-7.59.0.tar.xz +20bc877c17824fe4886b10c2b90f7dd3f597968801e2f856acc5ea474b60fc3de0367e810b8593f01b5e08968499b5d7aa7e7967ddef260b86e920dccf00e21a 0001-openssl-fix-build-with-libressl-2.7.patch" |