libndp: adopted port

This commit is contained in:
Tim Biermann 2021-02-24 10:49:02 +00:00
parent 8961d930a5
commit 8e9c4a2d24
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3y6Y2/o+mU0XwcijSgkDt+zwtKoN/NWXfM8n0EITvpzXH+zpCB+cCCXQxaDr1CUTmYlHmJ57qh6L2B5iT0J3zAQ= RWSagIOpLGJF37/5rvQT5jiRpcVVfHgVvbg68ecAXAKZ2xi1+hNNjVxiNr6/GB+a8X3GC2G1WtYtXKezMOLIf8kgbnuKRdyMdQU=
SHA256 (Pkgfile) = 25e900e6fd5665976947b2bbb0efb54522a3727c8f6de730c456b872ce58f30b SHA256 (Pkgfile) = 20e2fd7949762dc929ae958765ec515fcd0644e08eb3f535f13c8bc64183d59a
SHA256 (.footprint) = d9ada955efe450f840fd95b450f36224b81115d0f9ab08eb04c29a995e338165 SHA256 (.footprint) = d9ada955efe450f840fd95b450f36224b81115d0f9ab08eb04c29a995e338165
SHA256 (libndp-1.7.tar.gz) = 2c480afbffb02792dbae3c13bbfb71d89f735562f2795cca0640ed3428b491b6 SHA256 (libndp-1.7.tar.gz) = 2c480afbffb02792dbae3c13bbfb71d89f735562f2795cca0640ed3428b491b6

View File

@ -1,7 +1,6 @@
# Description: Library for Neighbor Discovery Protocol # Description: Library for Neighbor Discovery Protocol
# URL: http://libndp.org/ # URL: http://libndp.org/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve # Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=libndp name=libndp
version=1.7 version=1.7
@ -9,9 +8,10 @@ release=1
source=(http://libndp.org/files/$name-$version.tar.gz) source=(http://libndp.org/files/$name-$version.tar.gz)
build() { build() {
cd $name-$version cd $name-$version
./configure \ ./configure \
--prefix=/usr --prefix=/usr \
make --disable-static
make DESTDIR=$PKG install make
make DESTDIR=$PKG install
} }