wok view multitail/receipt @ rev 13065

*mariadb*: add provide mysql
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 22 14:12:12 2012 +0200 (2012-06-22)
parents d1768332cee0
children 790665a153fa
line source
1 # SliTaz package receipt.
3 PACKAGE="multitail"
4 VERSION="5.2.8"
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 }