# Description: Library for Neighbor Discovery Protocol
# URL: http://libndp.org/
# Maintainer: Tim Biermann, tbier at posteo dot de

name=libndp
version=1.9
release=1
source=(http://libndp.org/files/$name-$version.tar.gz)

build() {
  cd $name-$version
  ./configure \
    --prefix=/usr \
    --disable-static
  make
  make DESTDIR=$PKG install
}
