diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-support/liburcu | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-support/liburcu')
-rw-r--r-- | meta/recipes-support/liburcu/liburcu_0.4.6.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-support/liburcu/liburcu_0.4.6.bb b/meta/recipes-support/liburcu/liburcu_0.4.6.bb new file mode 100644 index 0000000000..503b561d37 --- /dev/null +++ b/meta/recipes-support/liburcu/liburcu_0.4.6.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "The userspace read-copy update library by Mathieu Desnoyers" | ||
2 | HOMEPAGE = "http://lttng.org/urcu" | ||
3 | BUGTRACKER = "n/a" | ||
4 | |||
5 | LICENSE = "LGPLv2.1+ & MIT-style" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b472dc110d38774921e1d5ccb0065fff \ | ||
7 | file://urcu.h;beginline=4;endline=32;md5=4de0d68d3a997643715036d2209ae1d9 \ | ||
8 | file://urcu/uatomic_arch_x86.h;beginline=4;endline=21;md5=220552f72c55b102f2ee35929734ef42" | ||
9 | |||
10 | PR = "r0" | ||
11 | |||
12 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2" | ||
13 | |||
14 | S = "${WORKDIR}/userspace-rcu-${PV}" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | # liburcu, which is only used by lttng-ust, may not build on other | ||
19 | # platforms, e.g., on ARM, liburcu is only supported on ARMv7l while poky | ||
20 | # only supports armv4/armv4t/armv5te. 1 more example: liburcu doesn't support | ||
21 | # MIPS now. | ||
22 | # So here let us first suppport x86/powerpc platforms now. | ||
23 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|powerpc.*)-linux' | ||
24 | |||