mirror of
https://github.com/pygos/build.git
synced 2024-11-16 08:27:11 +01:00
96966bf73b
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
29 lines
663 B
Text
Executable file
29 lines
663 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() {
|
|
cp -r ${1}/* ${PKGBUILDDIR}
|
|
|
|
make HOSTCC="gcc" AR="${TARGET}-ar" LD="${TARGET}-ld" CC="${TARGET}-gcc" SYSROOT="$TCDIR/$TARGET"
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
local DEVDEPLOY="$3"
|
|
|
|
mkdir -p "$DEPLOY/var/lib/arpd"
|
|
make DESTDIR="$DEPLOY" SYSROOT="$TCDIR/$TARGET" install
|
|
|
|
rm -r "$DEPLOY/include" "$DEPLOY/share/doc" "$DEPLOY/share/man"
|
|
|
|
strip_files ${DEPLOY}/bin/*
|
|
}
|