# HG changeset patch # User Hans-G?nter Theisgen # Date 1648186431 -3600 # Node ID 5fbb3aad734c814185ef92b51ae09d5b68eaf81f # Parent 2458037657422ede8eab5cdb17f55fd049ec47ba updated libssh and libssh-dev (0.9.4 -> 0.9.6) diff -r 245803765742 -r 5fbb3aad734c libssh-dev/receipt --- a/libssh-dev/receipt Fri Mar 25 06:24:51 2022 +0100 +++ b/libssh-dev/receipt Fri Mar 25 06:33:51 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libssh-dev" -VERSION="0.9.4" +VERSION="0.9.6" CATEGORY="development" SHORT_DESC="Development files for libssh." MAINTAINER="slaxemulator@gmail.com" @@ -14,8 +14,6 @@ # 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 + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r 245803765742 -r 5fbb3aad734c libssh/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libssh/description.txt Fri Mar 25 06:33:51 2022 +0100 @@ -0,0 +1,7 @@ +Libssh is a C library that enables you to write a program that uses the SSH protocol. +With it, you can remotely execute programs, transfer files, or use a secure and +transparent tunnel for your remote programs. +The SSH protocol is encrypted, ensures data integrity, and provides strong means of +authenticating both the server of the client. +The library hides a lot of technical details from the SSH protocol, but this does not +mean that you should not try to know about and understand these details. diff -r 245803765742 -r 5fbb3aad734c libssh/receipt --- a/libssh/receipt Fri Mar 25 06:24:51 2022 +0100 +++ b/libssh/receipt Fri Mar 25 06:33:51 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libssh" -VERSION="0.9.4" +VERSION="0.9.6" CATEGORY="network" TAGS="ssh" SHORT_DESC="Library for accessing ssh client services through C libraries." @@ -25,18 +25,17 @@ # Rules to configure and make the package. compile_rules() { - mkdir build - cd build - cmake ../ \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release && - make -j 1 && - make DESTDIR=$DESTDIR install + mkdir _build && + cd _build && + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_BUILD_TYPE=Release && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }