blob: 36592687d497a320e278368f7f09ccc00b97ef1f (
plain)
1 # Description: Library for Neighbor Discovery Protocol
2 # URL: http://libndp.org/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: libndp
5
6 name=libndp-32
7 version=1.8
8 release=1
9 source=(http://libndp.org/files/${name%-*}-$version.tar.gz)
10
11 build() {
12 cd ${name%-*}-$version
13
14 ./configure \
15 --prefix=/usr \
16 --libdir=/usr/lib32 \
17 --libexecdir=/usr/lib32
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -r $PKG/usr/{bin,include,share}
23 }
|