wok view ethtool/receipt @ rev 15039

Up kmod (14)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 12 13:23:00 2013 +0000 (2013-08-12)
parents 21f9c267cacf
children 5de169521ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="ethtool"
4 VERSION="3.6"
5 CATEGORY="network"
6 SHORT_DESC="Display or change ethernet card settings."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.kernel.org/pub/software/network/ethtool/"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 TAGS="ethernet"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS && \
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/sbin $fs/usr
28 }