summaryrefslogtreecommitdiff
path: root/repo/util/iproute2.xibuild
blob: 9d2cf91a00c54566353f23a67ac54fec3cb97272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

MAKEDEPS=(make )
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
}

package () {
    make DESTDIR=$PKG_DEST install 
}