wok view sysstat/receipt @ rev 20995

updated gputils (0.14.3 -> 1.5.0.1)
author Hans-G?nter Theisgen
date Thu Mar 07 17:47:51 2019 +0100 (2019-03-07)
parents 9a4439ceec35
children a5dc7e70b051
line source
1 # SliTaz package receipt.
3 PACKAGE="sysstat"
4 VERSION="12.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Performance monitoring tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
11 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
13 BUILD_DEPENDS="gettext bzip2 gcc63 gcc63-lib-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 sed -i 's|(uname -m)|(echo i686)|' configure
19 export CC=gcc-63 CXX=g++-63
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/etc $fs
30 cp -a $install/var $fs
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }