wok rev 24833
updated libssh and libssh-dev (0.9.4 -> 0.9.6)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Mar 25 06:33:51 2022 +0100 (2022-03-25) |
parents | 245803765742 |
children | 84001f5ff445 |
files | libssh-dev/receipt libssh/description.txt libssh/receipt |
line diff
1.1 --- a/libssh-dev/receipt Fri Mar 25 06:24:51 2022 +0100 1.2 +++ b/libssh-dev/receipt Fri Mar 25 06:33:51 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libssh-dev" 1.7 -VERSION="0.9.4" 1.8 +VERSION="0.9.6" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for libssh." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -14,8 +14,6 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libssh/description.txt Fri Mar 25 06:33:51 2022 +0100 2.3 @@ -0,0 +1,7 @@ 2.4 +Libssh is a C library that enables you to write a program that uses the SSH protocol. 2.5 +With it, you can remotely execute programs, transfer files, or use a secure and 2.6 +transparent tunnel for your remote programs. 2.7 +The SSH protocol is encrypted, ensures data integrity, and provides strong means of 2.8 +authenticating both the server of the client. 2.9 +The library hides a lot of technical details from the SSH protocol, but this does not 2.10 +mean that you should not try to know about and understand these details.
3.1 --- a/libssh/receipt Fri Mar 25 06:24:51 2022 +0100 3.2 +++ b/libssh/receipt Fri Mar 25 06:33:51 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libssh" 3.7 -VERSION="0.9.4" 3.8 +VERSION="0.9.6" 3.9 CATEGORY="network" 3.10 TAGS="ssh" 3.11 SHORT_DESC="Library for accessing ssh client services through C libraries." 3.12 @@ -25,18 +25,17 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - mkdir build 3.17 - cd build 3.18 - cmake ../ \ 3.19 - -DCMAKE_INSTALL_PREFIX=/usr \ 3.20 - -DCMAKE_BUILD_TYPE=Release && 3.21 - make -j 1 && 3.22 - make DESTDIR=$DESTDIR install 3.23 + mkdir _build && 3.24 + cd _build && 3.25 + cmake .. \ 3.26 + -D CMAKE_INSTALL_PREFIX=/usr \ 3.27 + -D CMAKE_BUILD_TYPE=Release && 3.28 + make && 3.29 + make install DESTDIR=$DESTDIR 3.30 } 3.31 3.32 # Rules to gen a SliTaz package suitable for Tazpkg. 3.33 genpkg_rules() 3.34 { 3.35 - mkdir -p $fs/usr/lib 3.36 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.37 + cook_copy_files *.so* 3.38 }