wok-current diff libcap-ng/receipt @ rev 24925
updated mpc (0.33 -> 0.34)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 13 13:55:09 2022 +0100 (2022-04-13) |
parents | 453c249b6219 |
children | 5926178cd6fa |
line diff
1.1 --- a/libcap-ng/receipt Fri Feb 11 17:50:36 2022 +0000 1.2 +++ b/libcap-ng/receipt Wed Apr 13 13:55:09 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libcap-ng" 1.7 -VERSION="0.7.9" 1.8 +VERSION="0.8.2" 1.9 CATEGORY="security" 1.10 SHORT_DESC="New generation libcap library." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 @@ -11,9 +11,9 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 WGET_URL="${WEB_SITE}$TARBALL" 1.15 1.16 +PROVIDE="libcap" 1.17 DEPENDS="" 1.18 -BUILD_DEPENDS="python" 1.19 -PROVIDE="libcap" 1.20 +BUILD_DEPENDS="autoconf automake coreutils libtool python" 1.21 1.22 # What is the latest version available today? 1.23 current_version() 1.24 @@ -25,16 +25,15 @@ 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 + ./autogen.sh && 1.29 ./configure $CONFIGURE_ARGS && 1.30 - make -j 1 && 1.31 + make && 1.32 make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 genpkg_rules() 1.37 { 1.38 - mkdir -p $fs/usr/lib 1.39 - 1.40 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.41 - cp -a $install/usr/bin $fs/usr 1.42 + cook_copy_folders bin 1.43 + cook_copy_files *.so* 1.44 }