25 lines
853 B
Bash
25 lines
853 B
Bash
# Template file for 'moreutils'
|
|
pkgname=moreutils
|
|
version=0.62
|
|
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"
|
|
homepage="https://joeyh.name/code/moreutils/"
|
|
distfiles="https://github.com/rtlanceroad/moreutils/archive/${version}.tar.gz"
|
|
checksum=9ddf9d74983bbca869de96210c81b95ef747d817bce67505f9804a90b9ce83bd
|
|
|
|
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
|
|
}
|