wok annotate acct/receipt @ rev 19215

Up coreutils(8.25)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jun 15 17:23:11 2016 +0300 (2016-06-15)
parents
children 45507bfb2b0d
rev   line source
hackdorte@19186 1 # SliTaz package receipt.
hackdorte@19186 2
hackdorte@19186 3 PACKAGE="acct"
hackdorte@19186 4 VERSION="6.6.2"
hackdorte@19186 5 CATEGORY="utilities"
hackdorte@19186 6 SHORT_DESC="Utilities that report data about users logged on GNU/Linux."
hackdorte@19186 7 MAINTAINER="hackdorte@sapo.pt"
hackdorte@19186 8 LICENSE="GPL3"
hackdorte@19186 9 GNU_MIRROR="http://ftp.gnu.org/gnu"
hackdorte@19186 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
hackdorte@19186 11
hackdorte@19186 12 WEB_SITE="http://savannah.gnu.org/projects/acct/"
hackdorte@19186 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
hackdorte@19186 14
hackdorte@19186 15 TAGS="analysis network utilities"
hackdorte@19186 16
hackdorte@19186 17 DEPENDS="gcc-lib-base glibc"
hackdorte@19186 18 BUILD_DEPENDS="glibc-dev"
hackdorte@19186 19
hackdorte@19186 20 # Rules to configure and make the package.
hackdorte@19186 21 compile_rules()
hackdorte@19186 22 {
hackdorte@19186 23 ./configure --prefix=/usr \
hackdorte@19186 24 $CONFIGURE_ARGS &&
hackdorte@19186 25 make $MAKEFLAGS &&
hackdorte@19186 26 make DESTDIR=$DESTDIR install
hackdorte@19186 27 }
hackdorte@19186 28
hackdorte@19186 29 # Rules to gen a SliTaz package suitable for Tazpkg.
hackdorte@19186 30 genpkg_rules()
hackdorte@19186 31 {
hackdorte@19186 32 mkdir -p $fs/usr/bin
hackdorte@19186 33 cp -a $install/usr/bin/* $fs/usr/bin
hackdorte@19186 34
hackdorte@19186 35 mkdir -p $fs/usr/sbin
hackdorte@19186 36 cp -a $install/usr/sbin/* $fs/usr/sbin
hackdorte@19186 37
hackdorte@19186 38 mkdir -p $fs/usr/share
hackdorte@19186 39 cp -a $install/usr/share/* $fs/usr/share
hackdorte@19186 40 }