wok view audit/receipt @ rev 20117

Up lz4 (1.8.0), zstd - Long Range (1.3.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 13 13:42:46 2017 +0200 (2017-10-13)
parents 11b5e93cb5f2
children 483356497a25
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 --with-libcap-ng=no \
23 --without-python \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/sbin $fs/
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/etc $fs/
37 chown -R root.root $fs/etc
38 }