wok annotate 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
rev   line source
pascal@12907 1 # SliTaz package receipt.
pascal@12907 2
pascal@12907 3 PACKAGE="audit"
Hans-G?nter@20727 4 VERSION="2.8.4"
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/"
Hans-G?nter@20727 10
pascal@12907 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@12907 12 WGET_URL="${WEB_SITE}$TARBALL"
pascal@12907 13
pascal@12907 14 DEPENDS=""
pascal@12907 15 BUILD_DEPENDS="openldap-dev"
pascal@12907 16
pascal@12907 17 # Rules to configure and make the package.
pascal@12907 18 compile_rules()
pascal@12907 19 {
Hans-G?nter@20727 20 ./configure \
Hans-G?nter@20727 21 --prefix=/usr \
Hans-G?nter@20727 22 --sysconfdir=/etc \
pascal@12907 23 --mandir=/usr/share/man \
Hans-G?nter@20727 24 --localstatedir=/var \
Hans-G?nter@20727 25 --sbindir=/sbin \
pascal@19706 26 --with-libcap-ng=no \
pascal@19706 27 --without-python \
pascal@12907 28 $CONFIGURE_ARGS &&
pascal@12907 29 make &&
pascal@12907 30 make DESTDIR=$DESTDIR install
pascal@12907 31 }
pascal@12907 32
al@19269 33 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19269 34 genpkg_rules()
pascal@12907 35 {
pascal@12907 36 mkdir -p $fs/usr/lib
pascal@15000 37 cp -a $install/sbin $fs/
pascal@15000 38 cp -a $install/usr/bin $fs/usr
pascal@15000 39 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15000 40 cp -a $install/etc $fs/
pascal@12907 41 chown -R root.root $fs/etc
pascal@12907 42 }