wok annotate audit/receipt @ rev 19275

Check manpages... from start to beaver.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jul 05 15:34:01 2016 +0300 (2016-07-05)
parents 7f39549720b8
children 7c3a8f7af451
rev   line source
pascal@12907 1 # SliTaz package receipt.
pascal@12907 2
pascal@12907 3 PACKAGE="audit"
pascal@12907 4 VERSION="2.2.1"
pascal@12907 5 CATEGORY="misc"
pascal@12907 6 SHORT_DESC="System call auditing."
pascal@12907 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@19275 9 WEB_SITE="http://people.redhat.com/sgrubb/audit/"
pascal@12907 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@12907 11 WGET_URL="${WEB_SITE}$TARBALL"
pascal@12907 12
pascal@12907 13 DEPENDS=""
pascal@12907 14 BUILD_DEPENDS="openldap-dev"
pascal@12907 15
pascal@12907 16 # Rules to configure and make the package.
pascal@12907 17 compile_rules()
pascal@12907 18 {
pascal@12907 19 ./configure --prefix=/usr --sysconfdir=/etc \
pascal@12907 20 --mandir=/usr/share/man \
pascal@12907 21 --localstatedir=/var --sbindir=/sbin \
pascal@12907 22 $CONFIGURE_ARGS &&
pascal@12907 23 make &&
pascal@12907 24 make DESTDIR=$DESTDIR install
pascal@12907 25 }
pascal@12907 26
al@19269 27 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19269 28 genpkg_rules()
pascal@12907 29 {
pascal@12907 30 mkdir -p $fs/usr/lib
pascal@15000 31 cp -a $install/sbin $fs/
pascal@15000 32 cp -a $install/usr/bin $fs/usr
pascal@15000 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15000 34 cp -a $install/etc $fs/
pascal@12907 35 chown -R root.root $fs/etc
pascal@12907 36 }