void-packages/srcpkgs/moreutils/template
2019-01-16 13:08:31 +01:00

27 lines
986 B
Bash

# Template file for 'moreutils'
pkgname=moreutils
version=0.63
revision=1
build_style=gnu-makefile
make_build_args="DOCBOOK2XMAN=docbook2man"
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=4fc86d56a8a276a0cec71cdabda5ccca50c7a44a2a1ccd888476741d1ce6831d
post_install() {
# rename parallel to not conflict with gnu-parllel
# rename ts: https://github.com/voidlinux/void-packages/issues/4282
for conflict in parallel ts; do
mv ${DESTDIR}/usr/bin/{,moreutils_}${conflict}
mv ${DESTDIR}/usr/share/man/man1/{,moreutils_}${conflict}.1
done
sed -n '/Copyright/,/DAMAGE/p' is_utf8/is_utf8.c > LICENSE-is-utf8
vlicense LICENSE-is-utf8
}