wok-next annotate inetutils/receipt @ rev 21529

updated buildroot (2014.08 -> 2020.05)
author Hans-G?nter Theisgen
date Sat Jun 20 16:34:10 2020 +0100 (2020-06-20)
parents 90a5eb560fd6
children
rev   line source
al@19745 1 # SliTaz package receipt v2.
al@19572 2
al@19572 3 PACKAGE="inetutils"
al@19572 4 VERSION="1.9.4"
al@19572 5 CATEGORY="base-system"
al@19572 6 SHORT_DESC="Programs for basic networking"
al@19572 7 MAINTAINER="al.bobylev@gmail.com"
al@19572 8 LICENSE="GPL3"
al@19572 9 WEB_SITE="https://www.gnu.org/software/inetutils/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/inetutils.html"
al@19572 11
al@19572 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19572 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@19572 14
al@20436 15 compile_rules() {
al@19572 16 ./configure \
al@19572 17 --localstatedir=/var \
al@19572 18 --disable-logger \
al@19572 19 --disable-whois \
al@19572 20 --disable-rcp \
al@19572 21 --disable-rexec \
al@19572 22 --disable-rlogin \
al@19572 23 --disable-rsh \
al@19572 24 --disable-servers \
al@19572 25 $CONFIGURE_ARGS &&
al@21020 26 make &&
al@21020 27 make install || return 1
al@19572 28
al@19572 29 mkdir -p $install/bin $install/sbin
al@19572 30 for i in hostname ping ping6 traceroute; do
al@19572 31 mv $install/usr/bin/$i $install/bin
al@19572 32 done
al@19572 33 mv $install/usr/bin/ifconfig $install/sbin
al@19572 34 }
al@19572 35
al@20436 36 genpkg_rules() {
al@19745 37 copy @std
al@19745 38 DEPENDS="readline"
al@20436 39 TAGS="LFS"
al@19572 40 }