# HG changeset patch # User Hans-G?nter Theisgen # Date 1555596653 -3600 # Node ID c37502c14e804fbbc0b2a6610053b3b7c766047c # Parent 21b978d464608f7c7146b72ede2948ac9fa82011 updated libssh and libssh-dev (0.7.5 -> 0.8.7) diff -r 21b978d46460 -r c37502c14e80 libssh-dev/receipt --- a/libssh-dev/receipt Thu Apr 18 14:49:19 2019 +0100 +++ b/libssh-dev/receipt Thu Apr 18 15:10:53 2019 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="libssh-dev" -VERSION="0.7.5" +VERSION="0.8.7" CATEGORY="development" -SHORT_DESC="devel files for libssh" +SHORT_DESC="Development files for libssh." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="http://www.libssh.org/" +WEB_SITE="https://www.libssh.org/" + WANTED="libssh" - DEPENDS="libssh pkg-config" # 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/pkgconfig $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 21b978d46460 -r c37502c14e80 libssh/receipt --- a/libssh/receipt Thu Apr 18 14:49:19 2019 +0100 +++ b/libssh/receipt Thu Apr 18 15:10:53 2019 +0100 @@ -1,28 +1,29 @@ # SliTaz package receipt. PACKAGE="libssh" -VERSION="0.7.5" +VERSION="0.8.7" CATEGORY="network" -SHORT_DESC="Library for accessing ssh client services through C libraries" +SHORT_DESC="Library for accessing ssh client services through C libraries." MAINTAINER="slaxemulator@gmail.com" LICENSE="LGPL2.1" +WEB_SITE="https://www.libssh.org/" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://www.libssh.org/" -WGET_URL="https://red.libssh.org/attachments/download/195/$TARBALL" +WGET_URL="${WEB_SITE}files/${VERSION%.*}/$TARBALL" TAGS="ssh" DEPENDS="libssl" -BUILD_DEPENDS="cmake openssl-dev wget" +BUILD_DEPENDS="cmake openssl-dev" # Rules to configure and make the package. compile_rules() { mkdir build cd build - cmake ../ \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release - make + cmake ../ \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release && + make -j 1 && make DESTDIR=$DESTDIR install }