18 lines
347 B
Plaintext
18 lines
347 B
Plaintext
# Description: Library for Neighbor Discovery Protocol
|
|
# URL: http://libndp.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=libndp
|
|
version=1.8
|
|
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
|
|
}
|