wok-6.x rev 24331
updated attr and attr-dev (2.4.48 -> 2.5.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jan 27 17:14:58 2022 +0100 (2022-01-27) |
parents | ecfd56157396 |
children | 4e9e2372bd7f |
files | attr-dev/receipt attr/receipt |
line diff
1.1 --- a/attr-dev/receipt Thu Jan 27 15:48:06 2022 +0100 1.2 +++ b/attr-dev/receipt Thu Jan 27 17:14:58 2022 +0100 1.3 @@ -1,23 +1,25 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="attr-dev" 1.7 -VERSION="2.4.48" 1.8 +VERSION="2.5.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for attr." 1.11 MAINTAINER="rcx@zoominternet.net" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://savannah.nongnu.org/projects/attr/" 1.14 +WEB_SITE="https://savannah.nongnu.org/projects/attr/" 1.15 1.16 +DEPENDS="attr" 1.17 WANTED="attr" 1.18 -DEPENDS="attr" 1.19 + 1.20 HOST_ARCH="i486 arm" 1.21 1.22 # Rules to gen a SliTaz package suitable for Tazpkg. 1.23 genpkg_rules() 1.24 { 1.25 - mkdir -p $fs/usr/lib $fs/lib 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 + mkdir -p $fs/lib 1.28 + 1.29 + cook_copy_folders include 1.30 + cook_copy_files *.*a 1.31 ( cd $fs/lib ; ln -s ../usr/lib/*a . ) 1.32 - cp -a $install/usr/include $fs/usr 1.33 find $fs -type f -name '*.la' -exec chmod a+x \{\} \; 1.34 }
2.1 --- a/attr/receipt Thu Jan 27 15:48:06 2022 +0100 2.2 +++ b/attr/receipt Thu Jan 27 17:14:58 2022 +0100 2.3 @@ -1,15 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="attr" 2.7 -VERSION="2.4.48" 2.8 +VERSION="2.5.1" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="Commands for Manipulating Filesystem Extended Attributes." 2.11 +SHORT_DESC="Commands for manipulating Filesystem Extended Attributes." 2.12 MAINTAINER="rcx@zoominternet.net" 2.13 LICENSE="GPL2" 2.14 -WEB_SITE="http://savannah.nongnu.org/projects/attr/" 2.15 +WEB_SITE="https://savannah.nongnu.org/projects/attr/" 2.16 2.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 -WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 2.19 +WGET_URL="https://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 2.20 2.21 DEPENDS="glibc-base" 2.22 BUILD_DEPENDS="autoconf automake m4 libtool gettext" 2.23 @@ -17,7 +17,7 @@ 2.24 2.25 # When cross compiling auto-tools, gettext and m4 build system are used. 2.26 case "$ARCH" in 2.27 - arm) BUILD_DEPENDS="" ;; 2.28 + (arm) BUILD_DEPENDS="" ;; 2.29 esac 2.30 2.31 current_version() 2.32 @@ -36,7 +36,8 @@ 2.33 # No need to use rpm 2.34 rm /bin/rpm 2.35 2.36 - export INSTALL_USER=root INSTALL_GROUP=root 2.37 + export INSTALL_USER=root 2.38 + export INSTALL_GROUP=root 2.39 2.40 ./configure $CONFIGURE_ARGS && 2.41 make && 2.42 @@ -48,8 +49,8 @@ 2.43 # Rules to gen a SliTaz package suitable for Tazpkg. 2.44 genpkg_rules() 2.45 { 2.46 - mkdir -p $fs/usr/lib 2.47 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.48 - cp -a $install/usr/bin $fs/usr 2.49 + cook_copy_folders bin 2.50 + cook_copy_files *.so* 2.51 + 2.52 find $fs -type f -name '*.so*' -exec chmod a+x \{\} \; 2.53 }