diff options
author | Joshua Lock <josh@linux.intel.com> | 2008-10-29 16:32:03 +0000 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2008-10-29 16:34:47 +0000 |
commit | db5f7b918b7384bfd7a83b5fd17c181cd1d9487b (patch) | |
tree | 5f15d91aa9318197c9082e289d8a52bf0f313468 /meta/packages/xerces-c | |
parent | 410141a9079202061c10a17e7d2a2c2f4d4e561d (diff) | |
download | poky-db5f7b918b7384bfd7a83b5fd17c181cd1d9487b.tar.gz |
packages: check, uuid and xerces.
Add recipes for: updated check, 0.9.5
uuid 1.6.2
xerces-c 2.8.0
Diffstat (limited to 'meta/packages/xerces-c')
-rw-r--r-- | meta/packages/xerces-c/xerces-c_2.8.0.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/packages/xerces-c/xerces-c_2.8.0.bb b/meta/packages/xerces-c/xerces-c_2.8.0.bb new file mode 100644 index 0000000000..d78bb22ad9 --- /dev/null +++ b/meta/packages/xerces-c/xerces-c_2.8.0.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "Xerces-c is a validating xml parser written in C++" | ||
2 | HOMEPAGE = "http://xerces.apache.org/xerces-c/" | ||
3 | SECTION = "libs" | ||
4 | PRIORITY = "optional" | ||
5 | LICENSE = "MIT" | ||
6 | PR = "r1" | ||
7 | |||
8 | SRC_URI = "http://mirror.serversupportforum.de/apache/xerces/c/2/sources/xerces-c-src_2_8_0.tar.gz" | ||
9 | S = "${WORKDIR}/xerces-c-src_2_8_0/src/xercesc" | ||
10 | |||
11 | inherit autotools pkgconfig | ||
12 | |||
13 | CCACHE = "" | ||
14 | export XERCESCROOT="${WORKDIR}/xerces-c-src_2_8_0" | ||
15 | export cross_compiling = "yes" | ||
16 | |||
17 | do_configure() { | ||
18 | ./runConfigure -plinux -c"${CC}" -x"${CXX}" -minmem -nsocket -tnative -rpthread -P${D}${prefix} \ | ||
19 | -C--build=${BUILD_SYS} \ | ||
20 | -C--host=${HOST_SYS} \ | ||
21 | -C--target=${TARGET_SYS} \ | ||
22 | } | ||
23 | |||
24 | do_compile() { | ||
25 | ${MAKE} | ||
26 | } | ||
27 | |||
28 | do_stage () { | ||
29 | oe_libinstall -C ${XERCESCROOT}/lib libxerces-c ${STAGING_LIBDIR} | ||
30 | oe_libinstall -C ${XERCESCROOT}/lib libxerces-depdom ${STAGING_LIBDIR} | ||
31 | cp -pPR ${XERCESCROOT}/include/xercesc ${STAGING_INCDIR} | ||
32 | } | ||
33 | |||
34 | do_install () { | ||
35 | ${MAKE} install | ||
36 | } | ||