diff options
| author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-10-18 17:07:54 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-20 17:13:38 +0100 |
| commit | a10af580999281ca84a0b2ab5a185a26cfaaaeba (patch) | |
| tree | 8dc9c41170cc6d86b901a60d8856bcf6018682b1 /meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | |
| parent | 4fe4ef58b808c6a02e7a903e91492dbc274fe43f (diff) | |
| download | poky-a10af580999281ca84a0b2ab5a185a26cfaaaeba.tar.gz | |
libxml-parser-perl: upgrade from 2.40 to 2.41
(From OE-Core rev: 8b96b339b1e3e2b4f58f79bc6fc0c87a18a6c7d3)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb')
| -rw-r--r-- | meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb new file mode 100644 index 0000000000..caf5704b32 --- /dev/null +++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | DESCRIPTION = "XML::Parser - A perl module for parsing XML documents" | ||
| 2 | SECTION = "libs" | ||
| 3 | LICENSE = "Artistic" | ||
| 4 | LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1" | ||
| 5 | |||
| 6 | DEPENDS += "expat expat-native" | ||
| 7 | |||
| 8 | PR = "r0" | ||
| 9 | |||
| 10 | SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" | ||
| 11 | SRC_URI[md5sum] = "c320d2ffa459e6cdc6f9f59c1185855e" | ||
| 12 | SRC_URI[sha256sum] = "b48197cd2265a26c5f016489f11a7b450d8833cb8b3d6a46ee15975740894de9" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/XML-Parser-${PV}" | ||
| 15 | |||
| 16 | EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" | ||
| 17 | |||
| 18 | inherit cpan | ||
| 19 | |||
| 20 | do_compile() { | ||
| 21 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | ||
| 22 | cpan_do_compile | ||
| 23 | } | ||
| 24 | |||
| 25 | do_compile_virtclass-native() { | ||
| 26 | cpan_do_compile | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/" | ||
| 30 | |||
| 31 | BBCLASSEXTEND="native" | ||
| 32 | |||
