# libndp - IPv6 Neighbor Discovery Protocol library
# Generated from manifest.tsv by gen-ports.py. Edit the manifest, not this file,
# unless the package needs something the template cannot express - in which case
# drop a `recipe.local` beside it and it will be preserved.
name=libndp
version=1.9
release=1
desc="IPv6 Neighbor Discovery Protocol library"
url="https://github.com/jpirko/libndp"
license="LGPL-2.1-or-later"
depend="glibc"
makedepend=""
source="https://github.com/jpirko/libndp/archive/refs/tags/v1.9.tar.gz"
sha256="SKIP"

build() {
	cd "libndp-1.9"
	# GitHub's tag archive is raw source, not a `make dist` release tarball -
	# there is no generated ./configure here (libndp has never published one
	# as a real GitHub Release, only git tags), so one has to be produced
	# first. autoreconf/automake/libtool aren't ScrapLinux packages yet, only
	# build-time tools this recipe borrows from the build host, same as
	# meson/ninja/python already are for other recipes before their own
	# ports exist.
	[ -x ./configure ] || autoreconf -fi
	# Not every configure script accepts the same options - sqlite rejects
	# --disable-nls outright, for instance - so only pass the ones this one
	# actually advertises. Guessing wrong fails the whole build.
	_opts="--prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib"
	_help=$(./configure --help 2>/dev/null)
	case "$_help" in *--disable-static*)  _opts="$_opts --disable-static" ;; esac
	case "$_help" in *--disable-nls*)     _opts="$_opts --disable-nls" ;; esac
	# shellcheck disable=SC2086
	./configure $_opts
	make -j"$JOBS"
}

package() {
	cd "libndp-1.9"
	make DESTDIR="$pkgdir" install
}
