wok diff acct/receipt @ rev 19186

Add: The GNU Accounting Utilities.
author Leonardo Laporte <hackdorte@sapo.pt>
date Sat Jun 04 09:44:45 2016 -0300 (2016-06-04)
parents
children 45507bfb2b0d
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/acct/receipt	Sat Jun 04 09:44:45 2016 -0300
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="acct"
     1.7 +VERSION="6.6.2"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Utilities that report data about users logged on GNU/Linux."
    1.10 +MAINTAINER="hackdorte@sapo.pt"
    1.11 +LICENSE="GPL3"
    1.12 +GNU_MIRROR="http://ftp.gnu.org/gnu"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +
    1.15 +WEB_SITE="http://savannah.gnu.org/projects/acct/"
    1.16 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.17 +
    1.18 +TAGS="analysis network utilities"
    1.19 +
    1.20 +DEPENDS="gcc-lib-base glibc"
    1.21 +BUILD_DEPENDS="glibc-dev"
    1.22 +
    1.23 +# Rules to configure and make the package.
    1.24 +compile_rules()
    1.25 +{
    1.26 +  ./configure --prefix=/usr \
    1.27 +    $CONFIGURE_ARGS &&
    1.28 +    make $MAKEFLAGS &&
    1.29 +    make DESTDIR=$DESTDIR install
    1.30 +}
    1.31 +
    1.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 +genpkg_rules()
    1.34 +{
    1.35 +  mkdir -p $fs/usr/bin
    1.36 +  cp -a $install/usr/bin/* $fs/usr/bin
    1.37 +
    1.38 +  mkdir -p $fs/usr/sbin
    1.39 +  cp -a $install/usr/sbin/* $fs/usr/sbin
    1.40 +
    1.41 +  mkdir -p $fs/usr/share
    1.42 +  cp -a $install/usr/share/* $fs/usr/share
    1.43 +}