diff options
author | Ting Liu <b28495@freescale.com> | 2013-09-24 07:17:36 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-10-05 12:36:24 +0200 |
commit | e5da5ebff6dd6964bbeb37a39bbf8afa30ce92da (patch) | |
tree | 4f2ab894e4543a12794cabbadcbaab2719f860f6 /meta-oe/recipes-extended/tipcutils | |
parent | 49dc9c5ede88ad555ce605af7f471819ac0372ca (diff) | |
download | meta-openembedded-e5da5ebff6dd6964bbeb37a39bbf8afa30ce92da.tar.gz |
tipcutils: add recipe
The Transparent Inter-Process Communication protocol allows applications
in a clustered computer environment to communicate quickly and reliably
with other applications, regardless of their location within the
cluster.
demo binaries are packaged to tipcutils-demos.
Signed-off-by: Ting Liu <b28495@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/tipcutils')
-rw-r--r-- | meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb b/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb new file mode 100644 index 000000000..f91ef0e71 --- /dev/null +++ b/meta-oe/recipes-extended/tipcutils/tipcutils_2.0.6.bb | |||
@@ -0,0 +1,40 @@ | |||
1 | DESCRIPTION = "Transparent Inter-Process Communication protocol" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://tipc-config/tipc-config.c;endline=32;md5=527a3d5745e1581b15a4fddfb5dfda68" | ||
4 | |||
5 | SRC_URI = "git://tipc.git.sourceforge.net/gitroot/tipc/tipcutils" | ||
6 | SRCREV = "292a03e17f889013fca2c7bd0aaeebd600c88f40" | ||
7 | |||
8 | DEPENDS="virtual/kernel" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | do_configure_prepend() { | ||
15 | ( cd ${S}; ${S}/bootstrap ) | ||
16 | } | ||
17 | |||
18 | do_install_append() { | ||
19 | demos="benchmark hello_world topology_subscr_demo connection_demo \ | ||
20 | multicast_demo stream_demo" | ||
21 | for i in $demos;do | ||
22 | install -d ${D}/opt/tipcutils/demos/$i | ||
23 | install ${S}/demos/$i/client_tipc ${D}/opt/tipcutils/demos/$i/ | ||
24 | install ${S}/demos/$i/server_tipc ${D}/opt/tipcutils/demos/$i/ | ||
25 | done | ||
26 | install -d ${D}/opt/tipcutils/demos/inventory_sim | ||
27 | install ${S}/demos/inventory_sim/inventory_sim ${D}/opt/tipcutils/demos/inventory_sim/ | ||
28 | |||
29 | install -d ${D}/opt/tipcutils/ptts | ||
30 | install ${S}/ptts/tipcTS ${D}/opt/tipcutils/ptts/ | ||
31 | install ${S}/ptts/tipcTC ${D}/opt/tipcutils/ptts/ | ||
32 | |||
33 | install -d ${D}${sysconfdir} | ||
34 | cp -a ${S}/scripts/etc/* ${D}${sysconfdir}/ | ||
35 | } | ||
36 | |||
37 | PACKAGES += "${PN}-demos" | ||
38 | FILES_${PN}-dbg += "/opt/tipcutils/demos/*/.debug /opt/tipcutils/ptts/.debug" | ||
39 | FILES_${PN}-demos = "/opt/tipcutils/*" | ||
40 | |||