diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2015-01-22 10:42:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-29 15:36:47 +0000 |
commit | 2baa624fdf1abb6d43566a1d2d264941f2787483 (patch) | |
tree | eb0837f6d78b5bf907c4ddb8057d87560ee3d305 /meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb | |
parent | 8bef63373d605576779adef3ebd34c52f72632ef (diff) | |
download | poky-2baa624fdf1abb6d43566a1d2d264941f2787483.tar.gz |
libxml-parser-perl: upgrade to 2.44
(From OE-Core rev: 11a290a03cc45ca45b09b658e66641f481708b7c)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb')
-rw-r--r-- | meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb new file mode 100644 index 0000000000..9ccd417398 --- /dev/null +++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.44.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | SUMMARY = "XML::Parser - A perl module for parsing XML documents" | ||
2 | SECTION = "libs" | ||
3 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
4 | LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1" | ||
5 | |||
6 | DEPENDS += "expat expat-native" | ||
7 | |||
8 | SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" | ||
9 | SRC_URI[md5sum] = "af4813fe3952362451201ced6fbce379" | ||
10 | SRC_URI[sha256sum] = "1ae9d07ee9c35326b3d9aad56eae71a6730a73a116b9fe9e8a4758b7cc033216" | ||
11 | |||
12 | S = "${WORKDIR}/XML-Parser-${PV}" | ||
13 | |||
14 | EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR} CC='${CC}' LD='${CCLD}' FULL_AR='${AR}'" | ||
15 | |||
16 | inherit cpan | ||
17 | |||
18 | # fix up sub MakeMaker project as arguments don't get propagated though | ||
19 | # see https://rt.cpan.org/Public/Bug/Display.html?id=28632 | ||
20 | do_configure_append() { | ||
21 | sed 's:--sysroot=.*\(\s\|$\):--sysroot=${STAGING_DIR_TARGET} :g' -i Makefile Expat/Makefile | ||
22 | sed 's:^FULL_AR = .*:FULL_AR = ${AR}:g' -i Expat/Makefile | ||
23 | } | ||
24 | |||
25 | do_compile() { | ||
26 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | ||
27 | cpan_do_compile | ||
28 | } | ||
29 | |||
30 | do_compile_class-native() { | ||
31 | cpan_do_compile | ||
32 | } | ||
33 | |||
34 | FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/" | ||
35 | |||
36 | BBCLASSEXTEND="native" | ||
37 | |||