void-packages/srcpkgs/drbd-utils/template

40 lines
1.1 KiB
Bash
Raw Normal View History

2015-05-11 10:56:42 +00:00
# Template file for 'drbd'
pkgname=drbd-utils
2015-06-17 07:23:26 +00:00
version=8.9.3
2015-05-11 10:56:42 +00:00
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"
2015-06-17 07:23:26 +00:00
checksum=4043178182ea1a62d038af3149e88ddacc65fcb9e63dfb75c12d71afd63c51d9
2015-05-11 10:56:42 +00:00
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
}