wok-next view inetutils/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents c740762c8991
children 90a5eb560fd6
line source
1 # SliTaz package receipt v2.
3 PACKAGE="inetutils"
4 VERSION="1.9.4"
5 CATEGORY="base-system"
6 SHORT_DESC="Programs for basic networking"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/inetutils/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --localstatedir=/var \
19 --disable-logger \
20 --disable-whois \
21 --disable-rcp \
22 --disable-rexec \
23 --disable-rlogin \
24 --disable-rsh \
25 --disable-servers \
26 $CONFIGURE_ARGS &&
27 make && make install
29 mkdir -p $install/bin $install/sbin
30 for i in hostname ping ping6 traceroute; do
31 mv $install/usr/bin/$i $install/bin
32 done
33 mv $install/usr/bin/ifconfig $install/sbin
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 copy @std
40 DEPENDS="readline"
41 }