wok view dnstracer/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 490539922a0d
children bfabe25c21ff
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 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.mavetju.org/unix/dnstracer.php"
11 WGET_URL="http://www.mavetju.org/download/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="autoconf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 autoconf
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }