wok view audit/receipt @ rev 19049

Fix the name (lives > lives-exe), desktop file.
author Leonardo Laporte <hackdorte@sapo.pt>
date Sun Apr 17 17:33:06 2016 -0300 (2016-04-17)
parents e9e7c1c5617e
children 7f39549720b8
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://people.redhat.com/sgrubb/audit/"
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 cd $src
20 ./configure --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 --localstatedir=/var --sbindir=/sbin \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/sbin $fs/
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/etc $fs/
36 chown -R root.root $fs/etc
37 }