# SliTaz package receipt. PACKAGE="ethtool" VERSION="5.16" 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" DEPENDS="libmnl" BUILD_DEPENDS="libmnl-dev" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders sbin }