wok view audit/receipt @ rev 21433

updated meson (0.48.1 -> 0.50.1)
author Hans-G?nter Theisgen
date Sat Apr 27 14:45:20 2019 +0100 (2019-04-27)
parents 7c3a8f7af451
children 8f20ceb4532c
line source
1 # SliTaz package receipt.
3 PACKAGE="audit"
4 VERSION="2.8.4"
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/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="openldap-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var \
25 --sbindir=/sbin \
26 --with-libcap-ng=no \
27 --without-python \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/sbin $fs/
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/etc $fs/
41 chown -R root.root $fs/etc
42 }