wok-next view traceroute/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 629c380d93f2
children
line source
1 # SliTaz package receipt.
3 PACKAGE="traceroute"
4 VERSION="2.0.19"
5 CATEGORY="network"
6 SHORT_DESC="The full-featured traceroute program"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://traceroute.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 make &&
16 make prefix=/usr DESTDIR=$install install
17 }
19 genpkg_rules() {
20 mkdir -p $fs/usr/bin
21 cp $install/usr/bin/traceroute $fs/usr/bin
22 }
24 post_remove() {
25 # Restore the symlink to busybox.
26 ln -s /bin/busybox /usr/bin/traceroute
27 }