wok view traceroute/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 629c380d93f2
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
3 PACKAGE="traceroute"
4 VERSION="2.1.0"
5 CATEGORY="network"
6 SHORT_DESC="The full-featured traceroute program."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://traceroute.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 make &&
18 make prefix=/usr DESTDIR=$DESTDIR install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp $install/usr/bin/traceroute $fs/usr/bin
26 }
28 post_remove()
29 {
30 # Restore the symbolic link to busybox.
31 ln -s /bin/busybox /usr/bin/traceroute
32 }