wok annotate sysstat/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 577c744d2f8e
children 9a4439ceec35
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@15001 8 LICENSE="GPL2"
pascal@6027 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
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@15001 13 BUILD_DEPENDS="gettext bzip2"
pascal@15001 14
pascal@6027 15 # Rules to configure and make the package.
pascal@6027 16 compile_rules()
pascal@6027 17 {
pascal@6027 18 cd $src
erjo@13473 19 ./configure $CONFIGURE_ARGS &&
pascal@6027 20 make &&
erjo@13473 21 make install
pascal@6027 22 }
pascal@6027 23
pascal@6027 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@6027 25 genpkg_rules()
pascal@6027 26 {
pascal@6027 27 mkdir -p $fs/usr
erjo@13473 28 cp -a $install/etc $fs
erjo@13473 29 cp -a $install/var $fs
erjo@13473 30 cp -a $install/usr/bin $fs/usr
erjo@13473 31 cp -a $install/usr/lib $fs/usr
pascal@6027 32 }