wok-6.x annotate ethtool/receipt @ rev 15737
goffice-dev: update deps
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Wed Jan 01 20:45:35 2014 +0100 (2014-01-01) |
parents | 380ffe05937a |
children | 27bab3002e84 |
rev | line source |
---|---|
paul@2049 | 1 # SliTaz package receipt. |
paul@2049 | 2 |
paul@2049 | 3 PACKAGE="ethtool" |
paul@15483 | 4 VERSION="3.12.1" |
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 |