wok-undigest view sysstat/receipt @ rev 35

gnome-keyring: improve receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 11 00:35:32 2010 +0200 (2010-04-11)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="sysstat"
4 VERSION="9.0.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utilities to monitor system performance and usage activity."
7 MAINTAINER="christophe.paris@free.fr"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://pagesperso-orange.fr/sebastien.godard"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --disable-nls --disable-documentation \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 # system activity directory
27 mkdir -p $fs/var/log/sa
29 # sadc directory
30 mkdir -p $fs/usr/lib/sa
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib $fs/usr
34 cp -a $_pkg/etc/sysconfig $fs/etc
35 }