shells/yash/ndmake.sh
$ cat ndmake.sh
#!/bin/sh -ue
NAME=yash
VERSION=2.60
RELEASE=1
SOURCE="https://github.com/magicant/yash/archive/refs/tags/2.60.tar.gz"

build() {
	msg "configuring yash..."
	export ASCIIDOC=":"
	export A2X=":"
	./configure --prefix="$PREFIX" --disable-nls || die "configure failed"

	msg "building yash..."
	make -j"$NPROC" yash share/config || die "make failed"

	msg "installing yash..."
	export ASCIIDOC=":"
	export A2X=":"
	make DESTDIR="$PKG" install || die "install failed"
}
. ${0%/*}/../../libsh/libdmake.sh