wok-next diff barnyard2/receipt @ rev 12877
claws-mail: fix compile_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri May 25 13:22:18 2012 +0200 (2012-05-25) |
parents | |
children | 97d1a1a41ec6 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/barnyard2/receipt Fri May 25 13:22:18 2012 +0200 1.3 @@ -0,0 +1,52 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="barnyard2" 1.7 +VERSION="1.9" 1.8 +CATEGORY="system" 1.9 +SHORT_DESC="Output spool reader for Snort" 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +WEB_SITE="http://www.securixlive.com/barnyard2/" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WGET_URL="http://www.securixlive.com/download/barnyard2/$TARBALL" 1.14 + 1.15 +DEPENDS="libpcap" 1.16 +BUILD_DEPENDS="libpcap-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --sysconfdir=/etc/barnyard2 $CONFIGURE_ARGS && make && make install 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + 1.29 + cp -a $install/* $fs 1.30 + 1.31 + mkdir -p /var/log/barnyard2 1.32 +} 1.33 + 1.34 +# Post install commands 1.35 +post_install() 1.36 +{ 1.37 + echo "Processing post install commands..." 1.38 + 1.39 + # addgroup snort if needed 1.40 + if ! grep -q 'snort:' $1/etc/group; then 1.41 + echo -n "Adding group Snort..." 1.42 + chroot $1/ /bin/addgroup snort 1.43 + status 1.44 + fi 1.45 + # adduser snort if needed 1.46 + if ! grep -q 'snort:' $1/etc/passwd; then 1.47 + echo -n "Adding user Snort..." 1.48 + chroot $1/ /bin/adduser -s /bin/false -h /dev/null \ 1.49 + -g "Snort Daemon user" -H -D -S -G snort snort 1.50 + status 1.51 + fi 1.52 + 1.53 + chroot $1/ chown snort.snort /var/log/barnyard2 1.54 +} 1.55 +