diff options
Diffstat (limited to 'repo/iproute2')
-rw-r--r-- | repo/iproute2/iproute2.xibuild | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/iproute2/iproute2.xibuild b/repo/iproute2/iproute2.xibuild new file mode 100644 index 0000000..47d2e9a --- /dev/null +++ b/repo/iproute2/iproute2.xibuild @@ -0,0 +1,17 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl libelf" + +SOURCE=https://git.kernel.org/pub/scm/network/iproute2/iproute2.git +DESC="IP Routing Utilities" + +build () { + sed -i /ARPD/d Makefile + rm -f man/man8/arpd.8 + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |