mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
Add ethtool package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
3c626bbd91
commit
637bbb6e8c
3 changed files with 30 additions and 0 deletions
|
@ -14,3 +14,4 @@ findutils
|
||||||
sed
|
sed
|
||||||
gawk
|
gawk
|
||||||
inetutils
|
inetutils
|
||||||
|
ethtool
|
||||||
|
|
|
@ -17,3 +17,4 @@ findutils
|
||||||
sed
|
sed
|
||||||
gawk
|
gawk
|
||||||
inetutils
|
inetutils
|
||||||
|
ethtool
|
||||||
|
|
28
pkg/ethtool/build
Executable file
28
pkg/ethtool/build
Executable 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"
|
||||||
|
}
|
Loading…
Reference in a new issue