24 lines
458 B
Plaintext
24 lines
458 B
Plaintext
# Description: Library for Neighbor Discovery Protocol
|
|
# URL: http://libndp.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libndp
|
|
|
|
name=libndp-32
|
|
version=1.7
|
|
release=1
|
|
source=(http://libndp.org/files/${name%-*}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--libexecdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|