From 1e2b5846b5b238c00bf26ff421e498a26dad0059 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 14 Jul 2014 14:38:07 +0200 Subject: [PATCH] libssh2: switch to libressl. --- srcpkgs/libssh2/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/libssh2/template b/srcpkgs/libssh2/template index dbb268fe405..137a12b8370 100644 --- a/srcpkgs/libssh2/template +++ b/srcpkgs/libssh2/template @@ -1,10 +1,10 @@ # Template file for 'libssh2' pkgname=libssh2 version=1.4.3 -revision=5 +revision=6 build_style=gnu-configure -configure_args="--disable-static --with-libssl-prefix=${XBPS_CROSS_BASE}/usr" -makedepends="openssl-devel" +configure_args="--with-libssl-prefix=${XBPS_CROSS_BASE}/usr" +makedepends="libressl-devel" short_desc="Library implementing the SSH2 protocol" maintainer="Juan RP " license="BSD" @@ -13,11 +13,12 @@ distfiles="http://www.libssh2.org/download/$pkgname-$version.tar.gz" checksum=eac6f85f9df9db2e6386906a6227eb2cd7b3245739561cad7d6dc1d5d021b96d libssh2-devel_package() { - depends="openssl-devel ${sourcepkg}>=${version}_${revision}" + depends="libressl-devel ${sourcepkg}>=${version}_${revision}" short_desc+=" - development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig + vmove "usr/lib/*.a" vmove "usr/lib/*.so" vmove usr/share }