wok annotate ethtool/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents 5de169521ad0
children 6d694a106eac
rev   line source
paul@2049 1 # SliTaz package receipt.
paul@2049 2
paul@2049 3 PACKAGE="ethtool"
paul@18906 4 VERSION="4.2"
pascal@2054 5 CATEGORY="network"
paul@2049 6 SHORT_DESC="Display or change ethernet card settings."
paul@2049 7 MAINTAINER="paul@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
paul@15483 9 BUILD_DEPENDS="wget"
paul@15483 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@15483 11 WEB_SITE="https://www.kernel.org/pub/software/network/ethtool"
slaxemulator@10267 12 WGET_URL="$WEB_SITE/$TARBALL"
jozee@4935 13 TAGS="ethernet"
paul@2049 14
paul@2049 15 # Rules to configure and make the package.
paul@2049 16 compile_rules()
paul@2049 17 {
paul@2049 18 cd $src
paul@2049 19 ./configure --prefix=/usr --infodir=/usr/share/info \
paul@2049 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
paul@13520 21 make && make install
paul@2049 22 }
paul@2049 23
paul@2049 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2049 25 genpkg_rules()
paul@2049 26 {
paul@2049 27 mkdir -p $fs/usr
paul@13520 28 cp -a $install/usr/sbin $fs/usr
paul@2049 29 }
paul@2049 30