wok-next view trafshow/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents 3ba8d2c9720d
children 8e1b2a143eb3
line source
1 # SliTaz package receipt.
3 PACKAGE="trafshow"
4 VERSION="5.2.3"
5 CATEGORY="network"
6 SHORT_DESC="Full screen network traffic monitor."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://soft.risp.ru/trafshow/index_en.shtml"
11 WGET_URL="http://fossies.org/linux/misc/$TARBALL"
13 DEPENDS="ncurses libpcap"
14 BUILD_DEPENDS="ncurses-dev libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # fix session.c bug
20 sed -i '43d' session.c
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS && 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/.trafshow $fs/etc/trafshow
34 # tidy config file and change perms
35 chown root:root $fs/etc/trafshow
36 sed -i 's|*/icmp|#*/icmp|' $fs/etc/trafshow
37 sed -i 's|nfs|#nfs|' $fs/etc/trafshow
38 sed -i 's|513|#513|' $fs/etc/trafshow
39 sed -i 's|514|#514|' $fs/etc/trafshow
40 }