wok-current rev 25343
updated sysstat (12.3.2 -> 12.6.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jul 25 07:23:20 2022 +0100 (2022-07-25) |
parents | 1df2f00504a9 |
children | 04410c6a9726 |
files | sysstat/description.txt sysstat/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sysstat/description.txt Mon Jul 25 07:23:20 2022 +0100 1.3 @@ -0,0 +1,4 @@ 1.4 +The sysstat utilities are a collection of performance 1.5 +monitoring tools for Linux. 1.6 +These include sar, sadf, mpstat, iostat, tapestat, 1.7 +pidstat, cifsiostat and sa tools.
2.1 --- a/sysstat/receipt Sun Jul 24 17:10:41 2022 +0000 2.2 +++ b/sysstat/receipt Mon Jul 25 07:23:20 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="sysstat" 2.7 -VERSION="12.3.2" 2.8 +VERSION="12.6.0" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Performance monitoring tools." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -9,7 +9,7 @@ 2.13 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/" 2.14 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL" 2.17 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz" 2.18 2.19 DEPENDS="gcc83-lib-base" 2.20 BUILD_DEPENDS="bzip2 gcc83 gettext" 2.21 @@ -25,9 +25,11 @@ 2.22 compile_rules() 2.23 { 2.24 sed -i 's|(uname -m)|(echo i686)|' configure 2.25 - export CC=gcc-83 CXX=g++-83 2.26 2.27 - ./configure $CONFIGURE_ARGS && 2.28 + ./configure \ 2.29 + CC=gcc-83 \ 2.30 + CXX=g++-83 \ 2.31 + $CONFIGURE_ARGS && 2.32 make && 2.33 make install 2.34 } 2.35 @@ -35,10 +37,8 @@ 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr 2.40 - 2.41 - cp -a $install/etc $fs 2.42 - cp -a $install/var $fs 2.43 - cp -a $install/usr/bin $fs/usr 2.44 - cp -a $install/usr/lib $fs/usr 2.45 + cook_copy_folders etc 2.46 + cook_copy_folders bin 2.47 + cook_copy_folders lib 2.48 + cook_copy_folders var 2.49 }