wok view audit/receipt @ rev 13359

Add opus
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 12 10:35:23 2012 +0200 (2012-09-12)
parents
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="audit"
4 VERSION="2.2.1"
5 CATEGORY="misc"
6 SHORT_DESC="System call auditing."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://people.redhat.com/sgrubb/audit/"
10 WGET_URL="${WEB_SITE}$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS="openldap-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --mandir=/usr/share/man \
21 --localstatedir=/var --sbindir=/sbin \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/sbin $fs/
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 cp -a $_pkg/etc $fs/
35 chown -R root.root $fs/etc
36 }