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