mirror of
https://github.com/pygos/build.git
synced 2024-11-22 19:19:46 +01:00
2235d8e6a0
Upgrade the following packages to newer releases: - bash - busybox - coreutils - ethtool - iproute2 - libbsd - nano - ncurses - sqlite3 Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
37 lines
861 B
Text
Executable file
37 lines
861 B
Text
Executable file
VERSION="4.15.0"
|
|
SRCDIR="iproute2-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://www.kernel.org/pub/linux/utils/net/iproute2/"
|
|
SHA256SUM="48d4616a99d7b609b7b795c0ae8ec57099fb0271ed89253e8772c02327798355"
|
|
DEPENDS="bdb libmnl"
|
|
|
|
prepare() {
|
|
apply_patches
|
|
}
|
|
|
|
build() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
|
|
cp -r ${SOURCE}/* ${BUILD}
|
|
|
|
make HOSTCC="gcc" AR="${TARGET}-ar" LD="${TARGET}-ld" CC="${TARGET}-gcc" SYSROOT="$TCDIR/$TARGET"
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
local DEPLOY="$3"
|
|
local DEVDEPLOY="$4"
|
|
|
|
mkdir -p "$DEPLOY/var/lib/arpd"
|
|
make DESTDIR="$DEPLOY" SYSROOT="$TCDIR/$TARGET" install
|
|
|
|
rm -r "$DEPLOY/include"
|
|
rm -r "$DEPLOY/share/doc"
|
|
rm -r "$DEPLOY/share/man"
|
|
|
|
for program in arpd bridge devlink genl ifstat ip lnstat nstat rdma rtacct rtmon ss tc tipc; do
|
|
${TARGET}-strip --discard-all ${DEPLOY}/bin/$program
|
|
done
|
|
}
|