blob: a96158e594843ac6040bfa4a4c66a2c7c7226d28 (
plain)
1 # Description: Library for Neighbor Discovery Protocol
2 # URL: http://libndp.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=libndp
6 version=1.8
7 release=1
8 source=(http://libndp.org/files/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./configure \
13 --prefix=/usr \
14 --disable-static
15 make
16 make DESTDIR=$PKG install
17 }
|