aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libee/libee.inc
blob: 256fa053bee850c864e1d4cdedb5d22d992f5413 (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
SUMMARY = "An Event Expression Library inspired by CEE"
DESCRIPTION = "The core idea of libee is to provide a small \
but hopefully convenient API layer above the CEE standard."

HOMEPAGE = "http://www.libee.org"
SECTION = "base"

LICENSE = "LGPL-2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=1c2687de35e36ba3b999136236a66cd6"

SRC_URI = "http://www.libee.org/download/files/download/${BPN}-${PV}.tar.gz\
           file://libee-parallel-make.patch \
           file://run-ptest \
           file://ezapi1.sh \
"

inherit autotools ptest pkgconfig

DEPENDS += "libestr"

PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'testbench', '', d)}"

PACKAGECONFIG[debug] = "--enable-debug,--disable-debug,,"
PACKAGECONFIG[testbench] = "--enable-testbench,--disable-testbench,,"

TESTDIR = "tests"

# We presume the tests we are going to install so just build them directly.
#
do_compile_ptest() {
	oe_runmake -C ${TESTDIR} genfile ezapi1
}

do_install_ptest() {
	install -d ${D}${PTEST_PATH}
	install -m 0755 ${B}/${TESTDIR}/genfile ${D}${PTEST_PATH}
	install -m 0755 ${B}/${TESTDIR}/.libs/ezapi1 ${D}${PTEST_PATH}
	install -m 0755 ${WORKDIR}/ezapi1.sh ${D}${PTEST_PATH}
}