diff options
author | Tim Biermann <tbier@posteo.de> | 2021-02-24 10:49:02 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-02-24 10:49:02 +0000 |
commit | 8e9c4a2d2433d1be86efda0bbc64f2ce089f4a88 (patch) | |
tree | 4a53192fa72b48d2fb1a42b51890ffa2b7a89dcc /libndp | |
parent | 8961d930a5a92434bb043494f57995e2dcd1fe51 (diff) | |
download | contrib-8e9c4a2d2433d1be86efda0bbc64f2ce089f4a88.tar.gz contrib-8e9c4a2d2433d1be86efda0bbc64f2ce089f4a88.tar.xz |
libndp: adopted port
Diffstat (limited to 'libndp')
-rw-r--r-- | libndp/.signature | 4 | ||||
-rw-r--r-- | libndp/Pkgfile | 18 |
2 files changed, 11 insertions, 11 deletions
diff --git a/libndp/.signature b/libndp/.signature index dbf6a1c53..7105e5954 100644 --- a/libndp/.signature +++ b/libndp/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3y6Y2/o+mU0XwcijSgkDt+zwtKoN/NWXfM8n0EITvpzXH+zpCB+cCCXQxaDr1CUTmYlHmJ57qh6L2B5iT0J3zAQ= -SHA256 (Pkgfile) = 25e900e6fd5665976947b2bbb0efb54522a3727c8f6de730c456b872ce58f30b +RWSagIOpLGJF37/5rvQT5jiRpcVVfHgVvbg68ecAXAKZ2xi1+hNNjVxiNr6/GB+a8X3GC2G1WtYtXKezMOLIf8kgbnuKRdyMdQU= +SHA256 (Pkgfile) = 20e2fd7949762dc929ae958765ec515fcd0644e08eb3f535f13c8bc64183d59a SHA256 (.footprint) = d9ada955efe450f840fd95b450f36224b81115d0f9ab08eb04c29a995e338165 SHA256 (libndp-1.7.tar.gz) = 2c480afbffb02792dbae3c13bbfb71d89f735562f2795cca0640ed3428b491b6 diff --git a/libndp/Pkgfile b/libndp/Pkgfile index 4c2957100..ebd33a859 100644 --- a/libndp/Pkgfile +++ b/libndp/Pkgfile @@ -1,7 +1,6 @@ -# Description: Library for Neighbor Discovery Protocol -# URL: http://libndp.org/ -# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve -# Depends on: +# Description: Library for Neighbor Discovery Protocol +# URL: http://libndp.org/ +# Maintainer: Tim Biermann, tbier at posteo dot de name=libndp version=1.7 @@ -9,9 +8,10 @@ release=1 source=(http://libndp.org/files/$name-$version.tar.gz) build() { - cd $name-$version - ./configure \ - --prefix=/usr - make - make DESTDIR=$PKG install + cd $name-$version + ./configure \ + --prefix=/usr \ + --disable-static + make + make DESTDIR=$PKG install } |