1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-26 13:00:13 +02:00

Add ethtool package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-01-15 11:27:05 +01:00
parent 3c626bbd91
commit 637bbb6e8c
3 changed files with 30 additions and 0 deletions

View file

@ -14,3 +14,4 @@ findutils
sed
gawk
inetutils
ethtool

View file

@ -17,3 +17,4 @@ findutils
sed
gawk
inetutils
ethtool

28
pkg/ethtool/build Executable file
View file

@ -0,0 +1,28 @@
VERSION="4.13"
SRCDIR="ethtool-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://www.kernel.org/pub/software/network/ethtool/"
SHA256SUM="b7c1a380007d30eaf261a63b3cfc000f9d93f9eb7626dcd48b5d2a733af99cba"
prepare() {
return
}
build() {
local INPUT="$1"
local OUTPUT="$2"
$INPUT/configure --prefix="" --host="$TARGET" --sbindir="/bin"
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
make DESTDIR="$DEPLOY" install-strip
rm -r "$DEPLOY/share"
}