wok annotate sysstat/receipt @ rev 13734

Add xscavenger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 25 16:55:52 2012 +0100 (2012-12-25)
parents 1f09198f8c07
children 408c87fa22ca
rev   line source
pascal@6027 1 # SliTaz package receipt.
pascal@6027 2
pascal@6027 3 PACKAGE="sysstat"
erjo@13473 4 VERSION="10.0.5"
pascal@6027 5 CATEGORY="system-tools"
pascal@6027 6 SHORT_DESC="Performance monitoring tools."
pascal@6027 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@6027 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@6028 9 BUILD_DEPENDS="gettext bzip2"
pascal@6027 10 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
pascal@6027 11 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
pascal@6027 12
pascal@6027 13 # Rules to configure and make the package.
pascal@6027 14 compile_rules()
pascal@6027 15 {
pascal@6027 16 cd $src
erjo@13473 17 ./configure $CONFIGURE_ARGS &&
pascal@6027 18 make &&
erjo@13473 19 make install
pascal@6027 20 }
pascal@6027 21
pascal@6027 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@6027 23 genpkg_rules()
pascal@6027 24 {
pascal@6027 25 mkdir -p $fs/usr
erjo@13473 26 cp -a $install/etc $fs
erjo@13473 27 cp -a $install/var $fs
erjo@13473 28 cp -a $install/usr/bin $fs/usr
erjo@13473 29 cp -a $install/usr/lib $fs/usr
pascal@6027 30 }