fonts/noto-fonts/ndmake.sh
$ cat ndmake.sh
#!/bin/sh -ue
NAME=noto-fonts
VERSION=noto-monthly-release-2025.11.01
RELEASE=1
SOURCE="https://github.com/notofonts/notofonts.github.io/archive/refs/tags/${VERSION}.tar.gz"

build() {
	mkdir -p "$PKG/$PREFIX/share/fonts/noto-fonts"
	cd "notofonts.github.io-${VERSION}"
	install -Dm644 fonts/*/hinted/ttf/*.tt[fc] -t "$PKG/$PREFIX/share/fonts/noto-fonts"
	install -Dm644 LICENSE -t "$PKG/$PREFIX/share/fonts/noto-fonts"
}

. ${0%/*}/../../libsh/libdmake.sh