#!/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 
}