slurm-wlm: fix conflict with slurm

This commit is contained in:
Alessio Sergi 2017-07-19 12:52:01 +02:00
parent b0524be231
commit dd6cfc8bcf
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'slurm-wlm'
pkgname=slurm-wlm
version=17.02.6.1
revision=1
revision=2
_distver="${version//./-}"
wrksrc="slurm-slurm-${_distver}"
build_style=gnu-configure
@ -28,3 +28,8 @@ if [ -z "${CROSS_BUILD}" ]; then
# The below at time of writing can not be cross compiled
makedepends+=" rrdtool-devel hdf5-devel libnuma-devel"
fi
post_install() {
# Rename slurm(1) manpage to avoid conflict with slurm
mv ${DESTDIR}/usr/share/man/man1/slurm.1 ${DESTDIR}/usr/share/man/man1/slurm-wlm.1
}