wok diff dnstop/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
parents
children 17e313b5b9c1
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dnstop/receipt	Tue Jan 27 16:55:03 2015 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dnstop"
     1.7 +VERSION="20121017"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Displays various tables of DNS traffic on your network."
    1.10 +MAINTAINER="paul@slitaz.org"
    1.11 +LICENSE="BSD"
    1.12 +DEPENDS="ncurses libpcap"
    1.13 +BUILD_DEPENDS="ncurses-dev libpcap-dev"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WEB_SITE="http://dns.measurement-factory.com/tools/dnstop"
    1.16 +WGET_URL="$WEB_SITE/src/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure --prefix=/usr
    1.23 +	make 
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/bin
    1.30 +	cp -a $src/$PACKAGE $fs/usr/bin
    1.31 +}
    1.32 +