# libedit - BSD line editing, replacing readline
# 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=libedit
version=20260512
release=1
desc="BSD line editing, replacing readline"
url="https://thrysoee.dk/editline/"
license="BSD-3-Clause"
depend="glibc netbsd-curses"
makedepend=""
source="https://thrysoee.dk/editline/libedit-20260512-3.1.tar.gz"
sha256="SKIP"

build() {
	cd "libedit-20260512-3.1"
	# 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 "libedit-20260512-3.1"
	make DESTDIR="$pkgdir" install
}
