wok annotate audit/receipt @ rev 23863

syslinux/isoboot.s: accept user args
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 19 15:46:21 2020 +0000 (2020-06-19)
parents 483356497a25
children 9af0e03b8ad0
rev   line source
pascal@12907 1 # SliTaz package receipt.
pascal@12907 2
pascal@12907 3 PACKAGE="audit"
Hans-G?nter@22520 4 VERSION="2.8.5"
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"
Hans-G?nter@22520 9 WEB_SITE="https://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@22520 20 ./configure \
Hans-G?nter@22520 21 --prefix=/usr \
Hans-G?nter@22520 22 --sysconfdir=/etc \
Hans-G?nter@22520 23 --mandir=/usr/share/man \
Hans-G?nter@22520 24 --localstatedir=/var \
Hans-G?nter@22520 25 --sbindir=/sbin \
Hans-G?nter@22520 26 --with-libcap-ng=no \
Hans-G?nter@22520 27 --without-python \
Hans-G?nter@22520 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
Hans-G?nter@22520 37
Hans-G?nter@22520 38 cp -a $install/sbin $fs/
Hans-G?nter@22520 39 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22520 40 cp -a $install/usr/lib/*.so* $fs/usr/lib
Hans-G?nter@22520 41 cp -a $install/etc $fs/
Hans-G?nter@22520 42 chown -R root.root $fs/etc
pascal@12907 43 }