wok view ethtool/receipt @ rev 20896

updated ethtool (4.2 -> 4.19)
author Hans-G?nter Theisgen
date Tue Feb 26 14:11:25 2019 +0100 (2019-02-26)
parents 27bab3002e84
children d66c0487628a
line source
1 # SliTaz package receipt.
3 PACKAGE="ethtool"
4 VERSION="4.19"
5 CATEGORY="network"
6 TAGS="ethernet"
7 SHORT_DESC="Display or change ethernet card settings."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.kernel.org/pub/software/network/ethtool"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/$TARBALL"
15 BUILD_DEPENDS="wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 }