diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2017-11-14 01:58:46 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-21 13:06:13 +0000 |
commit | 87761211a9afd95c34f368569f3a06e64d3abc01 (patch) | |
tree | 604f57961eebf2636466fb63953fcb1d35a95c97 /meta/recipes-devtools/perl/liberror-perl_0.17025.bb | |
parent | abbc21d82b13f8f41dd0143d3e8976b69f2f3fb4 (diff) | |
download | poky-87761211a9afd95c34f368569f3a06e64d3abc01.tar.gz |
liberror-perl: 0.17024 -> 0.17025
(From OE-Core rev: 5d148d34642793b7cf0c795321b6779b2f6b0a33)
Signed-off-by: Robert Yang <liezhi.yang@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/liberror-perl_0.17025.bb')
-rw-r--r-- | meta/recipes-devtools/perl/liberror-perl_0.17025.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/liberror-perl_0.17025.bb b/meta/recipes-devtools/perl/liberror-perl_0.17025.bb new file mode 100644 index 0000000000..251b13195a --- /dev/null +++ b/meta/recipes-devtools/perl/liberror-perl_0.17025.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "Error - Error/exception handling in an OO-ish way" | ||
2 | DESCRIPTION = "The Error package provides two interfaces. Firstly \ | ||
3 | Error provides a procedural interface to exception handling. \ | ||
4 | Secondly Error is a base class for errors/exceptions that can \ | ||
5 | either be thrown, for subsequent catch, or can simply be recorded." | ||
6 | |||
7 | SECTION = "libs" | ||
8 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
9 | |||
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8f3499d09ee74a050c0319391ff9d100" | ||
11 | |||
12 | DEPENDS += "perl" | ||
13 | |||
14 | SRC_URI = "http://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Error-${PV}.tar.gz" | ||
15 | |||
16 | SRC_URI[md5sum] = "1a2ee7f0dc44f9ee76661a16bbbc0c48" | ||
17 | SRC_URI[sha256sum] = "6c9f474ad3d4fe0cabff6b6be532cb1dd348245986d4a6b600ad921d5cfdefaf" | ||
18 | |||
19 | S = "${WORKDIR}/Error-${PV}" | ||
20 | |||
21 | inherit cpan | ||
22 | |||
23 | do_compile() { | ||
24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | ||
25 | cpan_do_compile | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||