# Template file for 'moreutils'
pkgname=moreutils
version=0.70
revision=1
build_style=gnu-makefile
make_build_args="DOCBOOKXSL=/usr/share/xsl/docbook/"
hostmakedepends="docbook2x"
depends="perl perl-IPC-Run perl-TimeDate perl-Time-Duration"
short_desc="Unix tools that nobody thought to write, when Unix was young"
maintainer="lemmi <lemmi@nerd2nerd.org>"
license="GPL-2.0-only, BSD-2-Clause"
homepage="https://joeyh.name/code/moreutils/"
distfiles="https://git.joeyh.name/index.cgi/moreutils.git/snapshot/moreutils-${version}.tar.gz"
checksum=f2bf46d410ba567cc8d01507e94916994e48742722e690dc498fab59f5250132

post_install() {
	# rename parallel to not conflict with gnu-parallel
	# rename ts to not conflict with ts

	for conflict in parallel ts; do
		mv ${DESTDIR}/usr/bin/{,moreutils_}${conflict}
		mv ${DESTDIR}/usr/share/man/man1/{,moreutils_}${conflict}.1
	done
	vdoc ${FILESDIR}/README.voidlinux

	sed -n '/Copyright/,/DAMAGE/p' is_utf8/is_utf8.c > LICENSE-is-utf8
	vlicense LICENSE-is-utf8
}
