wok view ethtool/receipt @ rev 4054

Add: viewnior (Light image viewer)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:49:39 2009 +0200 (2009-09-09)
parents fc784f29b3f6
children 31c985a0bd3d
line source
1 # SliTaz package receipt.
3 PACKAGE="ethtool"
4 VERSION="6"
5 CATEGORY="network"
6 SHORT_DESC="Display or change ethernet card settings."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/gkernel/"
11 WGET_URL="http://downloads.sourceforge.net/gkernel/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS && \
19 make && make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/sbin $fs/usr
27 }