wok annotate sysstat/receipt @ rev 23807

eudev: include relocated udevadm
author Richard Dunbar <mojo@slitaz.org>
date Sun May 24 12:23:14 2020 -0400 (2020-05-24)
parents 3fe0ed7c1aac
children 934055de50e2
rev   line source
pascal@6027 1 # SliTaz package receipt.
pascal@6027 2
pascal@6027 3 PACKAGE="sysstat"
Hans-G?nter@23689 4 VERSION="12.3.2"
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"
Hans-G?nter@21999 9 WEB_SITE="http://sebastien.godard.pagesperso-orange.fr/"
Hans-G?nter@21999 10
pascal@6027 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@6027 12 WGET_URL="http://pagesperso-orange.fr/sebastien.godard/$TARBALL"
pascal@6027 13
pascal@22396 14 DEPENDS="gcc83-lib-base"
Hans-G?nter@23689 15 BUILD_DEPENDS="bzip2 gcc83 gettext"
pascal@15001 16
pascal@6027 17 # Rules to configure and make the package.
pascal@6027 18 compile_rules()
pascal@6027 19 {
pascal@20606 20 sed -i 's|(uname -m)|(echo i686)|' configure
pascal@22396 21 export CC=gcc-83 CXX=g++-83
Hans-G?nter@21999 22
erjo@13473 23 ./configure $CONFIGURE_ARGS &&
pascal@6027 24 make &&
erjo@13473 25 make install
pascal@6027 26 }
pascal@6027 27
pascal@6027 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@6027 29 genpkg_rules()
pascal@6027 30 {
pascal@6027 31 mkdir -p $fs/usr
Hans-G?nter@21999 32
Hans-G?nter@21999 33 cp -a $install/etc $fs
Hans-G?nter@21999 34 cp -a $install/var $fs
Hans-G?nter@21999 35 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21999 36 cp -a $install/usr/lib $fs/usr
pascal@6027 37 }