wok-next diff ethtool/receipt @ rev 21087
Updates...
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Dec 28 05:11:49 2018 +0200 (2018-12-28) |
parents | 27bab3002e84 |
children | 4b3364ad1d81 |
line diff
1.1 --- a/ethtool/receipt Sun Feb 21 14:40:14 2016 +0000 1.2 +++ b/ethtool/receipt Fri Dec 28 05:11:49 2018 +0200 1.3 @@ -3,28 +3,25 @@ 1.4 PACKAGE="ethtool" 1.5 VERSION="4.2" 1.6 CATEGORY="network" 1.7 -SHORT_DESC="Display or change ethernet card settings." 1.8 +SHORT_DESC="Display or change ethernet card settings" 1.9 MAINTAINER="paul@slitaz.org" 1.10 LICENSE="GPL2" 1.11 -BUILD_DEPENDS="wget" 1.12 +WEB_SITE="https://mirrors.edge.kernel.org/pub/software/network/ethtool/" 1.13 + 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WEB_SITE="https://www.kernel.org/pub/software/network/ethtool" 1.16 WGET_URL="$WEB_SITE/$TARBALL" 1.17 -TAGS="ethernet" 1.18 1.19 -# Rules to configure and make the package. 1.20 -compile_rules() 1.21 -{ 1.22 - cd $src 1.23 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.24 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.25 - make && make install 1.26 +compile_rules() { 1.27 + ./configure \ 1.28 + --prefix=/usr \ 1.29 + --infodir=/usr/share/info \ 1.30 + --mandir=/usr/share/man \ 1.31 + $CONFIGURE_ARGS && 1.32 + make && 1.33 + make install 1.34 } 1.35 1.36 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.37 -genpkg_rules() 1.38 -{ 1.39 - mkdir -p $fs/usr 1.40 - cp -a $install/usr/sbin $fs/usr 1.41 +genpkg_rules() { 1.42 + copy @std 1.43 + TAGS="ethernet" 1.44 } 1.45 -