slurm-wlm: fix conflict with slurm
This commit is contained in:
parent
b0524be231
commit
dd6cfc8bcf
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'slurm-wlm'
|
# Template file for 'slurm-wlm'
|
||||||
pkgname=slurm-wlm
|
pkgname=slurm-wlm
|
||||||
version=17.02.6.1
|
version=17.02.6.1
|
||||||
revision=1
|
revision=2
|
||||||
_distver="${version//./-}"
|
_distver="${version//./-}"
|
||||||
wrksrc="slurm-slurm-${_distver}"
|
wrksrc="slurm-slurm-${_distver}"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
|
@ -28,3 +28,8 @@ if [ -z "${CROSS_BUILD}" ]; then
|
||||||
# The below at time of writing can not be cross compiled
|
# The below at time of writing can not be cross compiled
|
||||||
makedepends+=" rrdtool-devel hdf5-devel libnuma-devel"
|
makedepends+=" rrdtool-devel hdf5-devel libnuma-devel"
|
||||||
fi
|
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
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue