blob: 8ff078e3bf7760b67a6bd8e4a6086859c7d6b53b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: dreieck
# Contributor: Brian Bidulock <bidulock@openss7.org>
# Contributor: ovi chis <sonekken@gmail.com>
pkgname=corosync-nosystemd-git
_pkgname=corosync
pkgver=3.1.8.r21.g4e683699
pkgrel=1
pkgdesc="Cluster engine for nodal communication systems with additional features for implementing high availability within applications. Without systemd dependency/ support, latest git checkout."
arch=('i686' 'x86_64')
url="http://www.corosync.org/"
license=('BSD-3-Clause')
makedepends=('git')
depends=('nss' 'libstatgrab' 'net-snmp' 'libdbus' 'libqb' 'libcgroup' 'kronosnet')
provides=(
"${_pkgname}=${pkgver%%.r*}"
"${_pkgname}-nosystemd=${pkgver%%.r*}"
"${_pkgname}-git=${pkgver%%.r*}"
)
conflicts=(${_pkgname})
source=("$pkgname::git+https://github.com/corosync/${_pkgname}.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
git describe --long --tags | sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
cd $pkgname
./autogen.sh
}
build() {
cd $pkgname
./configure --sbindir=/usr/bin \
--sysconfdir=/etc \
--libdir=/usr/lib \
--localstatedir=/var \
--enable-dbus \
--enable-monitoring \
--enable-watchdog \
--disable-systemd \
--disable-upstart \
--enable-snmp \
--enable-xmlconf \
--enable-qdevices \
--enable-qnetd \
--enable-libcgroup \
--with-tmpfilesdir=/usr/lib/tmpfiles.d
# Fight unused direct deps
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
make V=0
}
package() {
cd $pkgname
make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
rm -fr "${pkgdir}/var/log"
rm -fr "${pkgdir}/var/run"
install -Dm644 /dev/null "${pkgdir}/usr/lib/tmpfiles.d/corosync.conf"
cat >>"${pkgdir}/usr/lib/tmpfiles.d/corosync.conf" <<EOF
d /var/log/cluster 0755 root root -
d /run/corosync-qdevice 0755 root root -
d /run/corosync-qnetd 0755 root root -
EOF
}
# vim: set sw=2 et:
|