wok diff libssh2/receipt @ rev 23984

linld: fix bootiso/strhead
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 25 20:41:41 2020 +0000 (2020-11-25)
parents a78610b2eb47
children 83b97236db32
line diff
     1.1 --- a/libssh2/receipt	Mon Jan 21 12:26:11 2019 +0100
     1.2 +++ b/libssh2/receipt	Wed Nov 25 20:41:41 2020 +0000
     1.3 @@ -1,23 +1,25 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libssh2"
     1.7 -VERSION="1.8.0"
     1.8 +VERSION="1.9.0"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="A client-side C library implementing the SSH2 protocol"
    1.11 +SHORT_DESC="A client-side C library implementing the SSH2 protocol."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="BSD"
    1.14 +WEB_SITE="https://www.libssh2.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://www.libssh2.org/"
    1.18  WGET_URL="$WEB_SITE/download/$TARBALL"
    1.19  
    1.20 -DEPENDS="libgcrypt zlib libgpg-error libssl"
    1.21 -BUILD_DEPENDS="libgcrypt-dev zlib-dev openssl-dev"
    1.22 +DEPENDS="libgcrypt libgpg-error libssl zlib"
    1.23 +BUILD_DEPENDS="libgcrypt-dev openssl-dev zlib-dev"
    1.24  
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	./configure --prefix=/usr \
    1.29 -		--mandir=/usr/share/man \
    1.30 +	./configure			\
    1.31 +		--prefix=/usr		\
    1.32 +		--mandir=/usr/share/man	\
    1.33  		$CONFIGURE_ARGS &&
    1.34  	make &&
    1.35  	make DESTDIR=$DESTDIR install
    1.36 @@ -27,5 +29,5 @@
    1.37  genpkg_rules()
    1.38  {
    1.39  	mkdir -p $fs/usr/lib
    1.40 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.41 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.42  }