wok view dnstracer/receipt @ rev 14939

Up: embryo (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:15:44 2013 +0200 (2013-08-08)
parents
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="dnstracer"
4 VERSION="1.9"
5 CATEGORY="network"
6 SHORT_DESC="Traces a chain of DNS servers to the source."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="autoconf"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.mavetju.org/unix/dnstracer.php"
12 WGET_URL="http://www.mavetju.org/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 autoconf
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }