iproute2

Details
Source
FROM stagex/pallet-gcc-gnu-busybox AS build
ARG VERSION
COPY --from=stagex/user-elfutils . /
ADD fetch/iproute2-${VERSION}.tar.xz .
WORKDIR /iproute2-${VERSION}
RUN --network=none <<-EOF
	make -j "$(nproc)" V=1
	make DESTDIR=/rootfs install
	mv /rootfs/sbin /rootfs/usr/sbin
	install -D -m644 include/libnetlink.h /rootfs/usr/include/libnetlink.h
	install -D -m644 lib/libnetlink.a /rootfs/usr/lib/libnetlink.a
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /