New package: drbd-utils-8.9.2
This commit is contained in:
parent
92fd6e7fec
commit
f528f8ab9a
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
exec /usr/libexec/drbd stop
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
/usr/libexec/drbd start
|
||||||
|
exec chpst -b drbd pause
|
|
@ -0,0 +1,39 @@
|
||||||
|
# Template file for 'drbd'
|
||||||
|
pkgname=drbd-utils
|
||||||
|
version=8.9.2
|
||||||
|
revision=1
|
||||||
|
build_style=gnu-configure
|
||||||
|
configure_args="
|
||||||
|
--sbindir=/usr/bin \
|
||||||
|
--libexecdir=/usr/libexec \
|
||||||
|
--with-distro=generic \
|
||||||
|
--with-bashcompletion \
|
||||||
|
--with-udev \
|
||||||
|
--without-rgmanager \
|
||||||
|
--without-pacemaker \
|
||||||
|
--without-heartbeat \
|
||||||
|
--without-xen"
|
||||||
|
conf_files="
|
||||||
|
/etc/drbd.conf
|
||||||
|
/etc/drbd.d/global_common.conf"
|
||||||
|
short_desc="Distributed replicated storage"
|
||||||
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
||||||
|
license="GPL-2"
|
||||||
|
homepage="http://www.drbd.org"
|
||||||
|
makedepends="eudev-libudev-devel"
|
||||||
|
hostmakedepends="flex pkg-config eudev"
|
||||||
|
distfiles="http://oss.linbit.com/drbd/drbd-utils-$version.tar.gz"
|
||||||
|
checksum=ebbeed5f31cc27a7e10da889f60ff25ec67a3e4a2becf70ed06734e2678d38b2
|
||||||
|
|
||||||
|
pre_configure() {
|
||||||
|
sed -i 's#^/lib#/usr/lib#' drbd.spec.in
|
||||||
|
sed -i 's#$(DESTDIR)/lib/#$(DESTDIR)/usr/lib/#g' $(find -name Makefile.in)
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
mv ${DESTDIR}/usr/lib/drbd $DESTDIR/usr/libexec
|
||||||
|
mv ${DESTDIR}/etc/init.d/* $DESTDIR/usr/libexec
|
||||||
|
vmkdir usr/share/bash-completion/completions
|
||||||
|
mv ${DESTDIR}/etc/bash_completion.d/* $DESTDIR/usr/share/bash-completion/completions
|
||||||
|
vsv drbd
|
||||||
|
}
|
Loading…
Reference in New Issue