# HG changeset patch # User Hans-G?nter Theisgen # Date 1584015348 -3600 # Node ID 67692aafbf5975cee8f9908a958e380824dec7a0 # Parent 431d56806c7d21c8b0a6730602278ba843d09d03 updated libssh2 and libssh2-dev (1.8.0 -> 1.9.0) diff -r 431d56806c7d -r 67692aafbf59 libssh2-dev/receipt --- a/libssh2-dev/receipt Thu Mar 12 11:27:14 2020 +0100 +++ b/libssh2-dev/receipt Thu Mar 12 13:15:48 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libssh2-dev" -VERSION="1.8.0" +VERSION="1.9.0" CATEGORY="development" -SHORT_DESC="A client-side C library implementing the SSH2 protocol, development files" +SHORT_DESC="A client-side C library implementing the SSH2 protocol, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" WEB_SITE="https://www.libssh2.org/" -WANTED="libssh2" DEPENDS="libssh2 pkg-config" +WANTED="libssh2" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 431d56806c7d -r 67692aafbf59 libssh2/receipt --- a/libssh2/receipt Thu Mar 12 11:27:14 2020 +0100 +++ b/libssh2/receipt Thu Mar 12 13:15:48 2020 +0100 @@ -1,23 +1,25 @@ # SliTaz package receipt. PACKAGE="libssh2" -VERSION="1.8.0" +VERSION="1.9.0" CATEGORY="network" -SHORT_DESC="A client-side C library implementing the SSH2 protocol" +SHORT_DESC="A client-side C library implementing the SSH2 protocol." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://www.libssh2.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.libssh2.org/" WGET_URL="$WEB_SITE/download/$TARBALL" -DEPENDS="libgcrypt zlib libgpg-error libssl" -BUILD_DEPENDS="libgcrypt-dev zlib-dev openssl-dev" +DEPENDS="libgcrypt libgpg-error libssl zlib" +BUILD_DEPENDS="libgcrypt-dev openssl-dev zlib-dev" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -27,5 +29,5 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/*.so* $fs/usr/lib }