wok view audit/receipt @ rev 19645

Up slitaz-base-files (322)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jan 21 16:33:25 2017 +0200 (2017-01-21)
parents 7f39549720b8
children 7c3a8f7af451
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 LICENSE="GPL2"
9 WEB_SITE="http://people.redhat.com/sgrubb/audit/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="${WEB_SITE}$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="openldap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
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 $install/sbin $fs/
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/etc $fs/
35 chown -R root.root $fs/etc
36 }