wok view sysstat/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 3d97a4760b5e
children 2b9ff117a412
line source
1 # SliTaz package receipt.
3 PACKAGE="sysstat"
4 VERSION="12.3.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Performance monitoring tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="bzip2 gcc83 gettext"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/released/!d;/devel/d;s|.*stat ||;s| .*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 sed -i 's|(uname -m)|(echo i686)|' configure
28 export CC=gcc-83 CXX=g++-83
30 ./configure $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
40 cp -a $install/etc $fs
41 cp -a $install/var $fs
42 cp -a $install/usr/bin $fs/usr
43 cp -a $install/usr/lib $fs/usr
44 }