blob: 73cea5e39839586dce2b7086c631159e80b8910a [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "An IPC library for high performance servers"
2DESCRIPTION = "libqb is a library with the primary purpose of providing high performance client server reusable features. \
3It provides high performance logging, tracing, ipc, and poll."
4
5HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki"
6SECTION = "libs"
7LICENSE = "LGPL-2.1"
8LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
9
10inherit autotools pkgconfig
11
12PV .= "+git${SRCPV}"
13
14# v1.0.3
15SRCREV = "28dff090c74b6ba8609c4797294a5afe3fe73987"
16SRC_URI = "git://github.com/ClusterLabs/${BPN}.git \
17 file://0001-build-fix-configure-script-neglecting-re-enable-out-.patch \
18 "
19S = "${WORKDIR}/git"
20
21CFLAGS += "-pthread -D_REENTRANT"
22do_configure_prepend() {
23 ( cd ${S}
24 ${S}/autogen.sh )
25}