wok-next view multitail/receipt @ rev 19972

Up copyq (3.1.1), qedit (2.8.1)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Oct 17 19:29:54 2017 +0200 (2017-10-17)
parents 17e313b5b9c1
children b278b2018965
line source
1 # SliTaz package receipt.
3 PACKAGE="multitail"
4 VERSION="5.2.9"
5 CATEGORY="system-tools"
6 SHORT_DESC="Monitor multiple log files."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://www.vanheusden.com/multitail/"
11 WGET_URL="http://www.vanheusden.com/multitail/$TARBALL"
12 CONFIG_FILES="/etc/multitail.conf"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 if [ ! -f done.tail_busybox.patch ]; then
21 patch -p1 -i $stuff/tail_busybox.patch && \
22 touch done.tail_busybox.patch
23 fi
24 make
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin $fs/etc
31 cp -a $src/$PACKAGE $fs/usr/bin
32 cp -a $src/$PACKAGE.conf $fs/etc
34 # Set minimum config.
35 sed -i 's/check_mail:5/check_mail:0/' $fs/etc/multitail.conf
36 }