wok view sysstat/receipt @ rev 9264

unfs3: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 15 12:26:04 2011 +0100 (2011-03-15)
parents f5edb5370d25
children 577c744d2f8e
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 BUILD_DEPENDS="gettext bzip2"
10 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
11 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/etc $fs
29 cp -a $_pkg/var $fs
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 }