wok view multitail/receipt @ rev 9691

module-init-tools: clean up
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 07 05:50:34 2011 +0000 (2011-05-07)
parents 0a0be2678617
children d1768332cee0
line source
1 # SliTaz package receipt.
3 PACKAGE="multitail"
4 VERSION="5.2.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Monitor multiple log files."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://www.vanheusden.com/multitail/"
12 WGET_URL="http://www.vanheusden.com/multitail/$TARBALL"
13 CONFIG_FILES="/etc/multitail.conf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 if [ ! -f done.tail_busybox.patch ]; then
20 patch -p1 -i ../stuff/tail_busybox.patch && \
21 touch done.tail_busybox.patch
22 fi
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/etc
30 cp -a $src/$PACKAGE $fs/usr/bin
31 cp -a $src/$PACKAGE.conf $fs/etc
33 # Set minimum config.
34 sed -i 's/check_mail:5/check_mail:0/' $fs/etc/multitail.conf
35 }