# HG changeset patch # User Hans-G?nter Theisgen # Date 1551186685 -3600 # Node ID 6d694a106eac58de413465f65fdd3c8d724a3967 # Parent 4628cad138111e0801803b603b81b480b32db6ab updated ethtool (4.2 -> 4.19) diff -r 4628cad13811 -r 6d694a106eac ethtool/receipt --- a/ethtool/receipt Tue Feb 26 13:45:00 2019 +0100 +++ b/ethtool/receipt Tue Feb 26 14:11:25 2019 +0100 @@ -1,24 +1,29 @@ # SliTaz package receipt. PACKAGE="ethtool" -VERSION="4.2" +VERSION="4.19" CATEGORY="network" +TAGS="ethernet" SHORT_DESC="Display or change ethernet card settings." MAINTAINER="paul@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.kernel.org/pub/software/network/ethtool" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/$TARBALL" + BUILD_DEPENDS="wget" -TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.kernel.org/pub/software/network/ethtool" -WGET_URL="$WEB_SITE/$TARBALL" -TAGS="ethernet" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS && \ - make && make install + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make -j 1 && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -27,4 +32,3 @@ mkdir -p $fs/usr cp -a $install/usr/sbin $fs/usr } -