25 lines
851 B
Bash
25 lines
851 B
Bash
# Template file for 'moreutils'
|
|
pkgname=moreutils
|
|
version=0.60
|
|
revision=2
|
|
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="${DEBIAN_SITE}/main/m/moreutils/moreutils_${version}.orig.tar.xz"
|
|
checksum=e42d18bacbd2d003779a55fb3542befa5d1d217ee37c1874e8c497581ebc17c5
|
|
|
|
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
|
|
}
|