60 lines
1.8 KiB
Bash
60 lines
1.8 KiB
Bash
# Template file for 'drbd-utils'
|
|
pkgname=drbd-utils
|
|
version=8.9.11
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="
|
|
--sbindir=/usr/bin \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--libexecdir=/usr/libexec \
|
|
--with-distro=generic \
|
|
--with-bashcompletion \
|
|
--with-udev \
|
|
--without-rgmanager \
|
|
--without-pacemaker \
|
|
--without-heartbeat \
|
|
--without-83support \
|
|
--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="automake libtool flex pkg-config eudev libxslt"
|
|
distfiles="https://www.drbd.org/download/drbd/utils/drbd-utils-$version.tar.gz"
|
|
checksum=c61878635c40536e7d689c65cbbe92ca982fa864cec20717c0af562f2a6c9c48
|
|
|
|
# Workaround a parallelism issue
|
|
disable_parallel_build=yes
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" drbd-utils"
|
|
fi
|
|
|
|
pre_configure() {
|
|
sed -i 's#/lib/drbd#/usr/lib/drbd#' drbd.spec.in
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
find -name "*.c" -exec sed -i "{}" -e 's#sys/poll\.h#poll.h#g' \;
|
|
find -name Makefile.in -exec sed -i "{}" -e 's#$(DESTDIR)/lib#$(DESTDIR)/usr/lib#g' \;
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
# Replace drbdsetup{,-83,84} with the /usr/bin or /usr/libexec counterparts
|
|
find -name Makefile.in -exec sed -i "{}" \
|
|
-e 's#^\(\s\)../../user/v83/drbdsetup-83#\1/usr/libexec/drbdsetup-83#' \
|
|
-e 's#^\(\s\)../../user/v84/drbdsetup-84#\1/usr/libexec/drbdsetup-84#' \
|
|
-e 's#^\(\s\)../../user/v9/drbdsetup#\1/usr/bin/drbdsetup#' \
|
|
\;
|
|
fi
|
|
}
|
|
|
|
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
|
|
}
|