wok-next view dnstop/receipt @ rev 19960

Remove -ltinfo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 17 10:14:12 2017 +0200 (2017-10-17)
parents 17e313b5b9c1
children 42d9d6d83956
line source
1 # SliTaz package receipt.
3 PACKAGE="dnstop"
4 VERSION="20121017"
5 CATEGORY="network"
6 SHORT_DESC="Displays various tables of DNS traffic on your network."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="BSD"
9 DEPENDS="ncurses libpcap"
10 BUILD_DEPENDS="ncurses-dev libpcap-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://dns.measurement-factory.com/tools/dnstop"
13 WGET_URL="$WEB_SITE/src/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/$PACKAGE $fs/usr/bin
27 }