aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libee/libee.inc
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2014-07-15 17:17:29 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2014-07-22 00:01:48 +0200
commit568f5a5db20aa489d832f22d962ad6583f0b063c (patch)
tree0df939ae7701af14009675bbde30583d989d7cd6 /meta-oe/recipes-support/libee/libee.inc
parentcd63a38d0ac5daabdbf12ba13c20b492b37ac70e (diff)
downloadmeta-openembedded-contrib-568f5a5db20aa489d832f22d962ad6583f0b063c.tar.gz
libee: add recipe
The core idea of libee is to provide a small but hopefully convenient API layer above the CEE standard. Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libee/libee.inc')
-rw-r--r--meta-oe/recipes-support/libee/libee.inc39
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libee/libee.inc b/meta-oe/recipes-support/libee/libee.inc
new file mode 100644
index 0000000000..5b552ca2a6
--- /dev/null
+++ b/meta-oe/recipes-support/libee/libee.inc
@@ -0,0 +1,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 ??= "${@base_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}
+}