wok-6.x 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 cc3c538f917f
children 52d07a6771b4
files acct/description.txt acct/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/acct/description.txt	Sat Jun 04 09:44:45 2016 -0300
     1.3 @@ -0,0 +1,5 @@
     1.4 +This is a set of utilities which report and summarize data about user connect 
     1.5 +times and process execution statistics under GNU/Linux.
     1.6 +
     1.7 +Accounting Utilities Manual
     1.8 +http://www.gnu.org/software/acct/manual/accounting.html
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/acct/receipt	Sat Jun 04 09:44:45 2016 -0300
     2.3 @@ -0,0 +1,40 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="acct"
     2.7 +VERSION="6.6.2"
     2.8 +CATEGORY="utilities"
     2.9 +SHORT_DESC="Utilities that report data about users logged on GNU/Linux."
    2.10 +MAINTAINER="hackdorte@sapo.pt"
    2.11 +LICENSE="GPL3"
    2.12 +GNU_MIRROR="http://ftp.gnu.org/gnu"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14 +
    2.15 +WEB_SITE="http://savannah.gnu.org/projects/acct/"
    2.16 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    2.17 +
    2.18 +TAGS="analysis network utilities"
    2.19 +
    2.20 +DEPENDS="gcc-lib-base glibc"
    2.21 +BUILD_DEPENDS="glibc-dev"
    2.22 +
    2.23 +# Rules to configure and make the package.
    2.24 +compile_rules()
    2.25 +{
    2.26 +  ./configure --prefix=/usr \
    2.27 +    $CONFIGURE_ARGS &&
    2.28 +    make $MAKEFLAGS &&
    2.29 +    make DESTDIR=$DESTDIR install
    2.30 +}
    2.31 +
    2.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.33 +genpkg_rules()
    2.34 +{
    2.35 +  mkdir -p $fs/usr/bin
    2.36 +  cp -a $install/usr/bin/* $fs/usr/bin
    2.37 +
    2.38 +  mkdir -p $fs/usr/sbin
    2.39 +  cp -a $install/usr/sbin/* $fs/usr/sbin
    2.40 +
    2.41 +  mkdir -p $fs/usr/share
    2.42 +  cp -a $install/usr/share/* $fs/usr/share
    2.43 +}