wok view sysstat/receipt @ rev 6027

Add sysstat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 15 16:50:10 2010 +0200 (2010-08-15)
parents
children 1f09198f8c07
line source
1 # SliTaz package receipt.
3 PACKAGE="sysstat"
4 VERSION="9.1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Performance monitoring tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
10 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/etc $fs
28 cp -a $_pkg/var $fs
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 }