wok-next diff ethtool/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 27bab3002e84
children 4b3364ad1d81
line diff
     1.1 --- a/ethtool/receipt	Sun Feb 21 14:40:14 2016 +0000
     1.2 +++ b/ethtool/receipt	Wed May 13 07:41:00 2020 +0100
     1.3 @@ -3,28 +3,25 @@
     1.4  PACKAGE="ethtool"
     1.5  VERSION="4.2"
     1.6  CATEGORY="network"
     1.7 -SHORT_DESC="Display or change ethernet card settings."
     1.8 +SHORT_DESC="Display or change ethernet card settings"
     1.9  MAINTAINER="paul@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 -BUILD_DEPENDS="wget"
    1.12 +WEB_SITE="https://mirrors.edge.kernel.org/pub/software/network/ethtool/"
    1.13 +
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="https://www.kernel.org/pub/software/network/ethtool"
    1.16  WGET_URL="$WEB_SITE/$TARBALL"
    1.17 -TAGS="ethernet"
    1.18  
    1.19 -# Rules to configure and make the package.
    1.20 -compile_rules()
    1.21 -{
    1.22 -	cd $src
    1.23 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.24 -	--mandir=/usr/share/man $CONFIGURE_ARGS && \
    1.25 -	make && make install
    1.26 +compile_rules() {
    1.27 +	./configure \
    1.28 +		--prefix=/usr \
    1.29 +		--infodir=/usr/share/info \
    1.30 +		--mandir=/usr/share/man \
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make &&
    1.33 +	make install
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 -	mkdir -p $fs/usr
    1.40 -	cp -a $install/usr/sbin $fs/usr
    1.41 +genpkg_rules() {
    1.42 +	copy @std
    1.43 +	TAGS="ethernet"
    1.44  }
    1.45 -