wok-6.x view multitail/receipt @ rev 13025

clucene-dev, clucene, drupal, fcitx-skin-default, fcitx-zm, gejengel, hd2u, input-utils, jdk6-jaf, jdk6-jaxp, jdk6-jaxws, kismet, libedit-dev, libedit, linux-module-headers, linux-ocfs2, linux-staging, linux64-ocfs2, linux64-staging, menu-railroad, nfs-utils, ode-dev, openjdk-6-src, runcom, talloc-python, vlc-plugin, xorg-xf86-video-neomagic: fix maintainer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 11 17:36:31 2012 +0200 (2012-06-11)
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 }