wok diff libssh/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents ede1d184d5c5
children d88295c12cfc
line diff
     1.1 --- a/libssh/receipt	Mon Feb 14 17:51:14 2022 +0000
     1.2 +++ b/libssh/receipt	Fri Jan 27 10:37:43 2023 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libssh"
     1.7 -VERSION="0.9.4"
     1.8 +VERSION="0.9.6"
     1.9  CATEGORY="network"
    1.10  TAGS="ssh"
    1.11  SHORT_DESC="Library for accessing ssh client services through C libraries."
    1.12 @@ -25,18 +25,17 @@
    1.13  # Rules to configure and make the package.
    1.14  compile_rules()
    1.15  {
    1.16 -	mkdir build
    1.17 -	cd build
    1.18 -	cmake ../				\
    1.19 -		-DCMAKE_INSTALL_PREFIX=/usr	\
    1.20 -		-DCMAKE_BUILD_TYPE=Release &&
    1.21 -	make -j 1 &&
    1.22 -	make DESTDIR=$DESTDIR install
    1.23 +	mkdir	_build &&
    1.24 +	cd	_build &&
    1.25 +	cmake	..				\
    1.26 +		-D CMAKE_INSTALL_PREFIX=/usr	\
    1.27 +		-D CMAKE_BUILD_TYPE=Release &&
    1.28 +	make &&
    1.29 +	make install DESTDIR=$DESTDIR
    1.30  }
    1.31  
    1.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.33  genpkg_rules()
    1.34  {
    1.35 -	mkdir -p $fs/usr/lib
    1.36 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.37 +	cook_copy_files	*.so*
    1.38  }