diff options
author | Tim Orling <ticotimo@gmail.com> | 2015-08-13 19:25:43 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-24 13:56:27 +0200 |
commit | 66a21c305597da1c3cf42fa0e73a8350ebf5f433 (patch) | |
tree | 88aaa9abc11e65bfe7eeb60fce36a6e18fe1184a /meta-perl | |
parent | 491beab0763ee6ae6fd31c3d4b64422dd544d7cb (diff) | |
download | meta-openembedded-66a21c305597da1c3cf42fa0e73a8350ebf5f433.tar.gz |
libencode-perl: add 2.76 recipe
* Based on v2.52 recipe:
Paul Eggleton <paul.eggleton@linux.intel.com>
http://github.com/bluelightning/public_bb_recipes
* which is forked from:
Emil Petersen <erp@movis.dk>
http://github.com/EmilRP/public_bb_recipes
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl')
-rw-r--r-- | meta-perl/recipes-perl/libencode/libencode-perl_2.76.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libencode/libencode-perl_2.76.bb b/meta-perl/recipes-perl/libencode/libencode-perl_2.76.bb new file mode 100644 index 0000000000..9939962363 --- /dev/null +++ b/meta-perl/recipes-perl/libencode/libencode-perl_2.76.bb | |||
@@ -0,0 +1,54 @@ | |||
1 | SUMMARY = "Encode - character encodings" | ||
2 | DESCRIPTION = "The \"Encode\" module provides the interfaces between \ | ||
3 | Perl's strings and the rest of the system. Perl strings are sequences \ | ||
4 | of characters." | ||
5 | |||
6 | AUTHOR = "Dan Kogai <dankogai+cpan@gmail.com>" | ||
7 | HOMEPAGE = "https://metacpan.org/release/Encode" | ||
8 | SECTION = "lib" | ||
9 | LICENSE = "Artistic-1.0 | GPL-1.0+" | ||
10 | LIC_FILES_CHKSUM = "file://META.json;md5=bb6a09a95259f80fbf2855c8f9dc3e85" | ||
11 | |||
12 | SRC_URI = "${CPAN_MIRROR}/authors/id/D/DA/DANKOGAI/Encode-${PV}.tar.gz" | ||
13 | SRC_URI[md5sum] = "90ee2160d40ade6cc4c4aa1b1ff4745e" | ||
14 | SRC_URI[sha256sum] = "0fa01359d34d1d129e9bcacb0b9bb821e36e9fb5f1404cfb557dfa680368f265" | ||
15 | |||
16 | S = "${WORKDIR}/Encode-${PV}" | ||
17 | |||
18 | inherit cpan | ||
19 | |||
20 | RDEPENDS_${PN} += " perl-module-bytes \ | ||
21 | perl-module-constant \ | ||
22 | perl-module-xsloader \ | ||
23 | " | ||
24 | |||
25 | RPROVIDES_${PN} += "libencode-alias-perl \ | ||
26 | libencode-byte-perl \ | ||
27 | libencode-cjkconstants-perl \ | ||
28 | libencode-cn-perl \ | ||
29 | libencode-cn-hz-perl \ | ||
30 | libencode-config-perl \ | ||
31 | libencode-ebcdic-perl \ | ||
32 | libencode-encoder-perl \ | ||
33 | libencode-encoding-perl \ | ||
34 | libencode-gsm0338-perl \ | ||
35 | libencode-guess-perl \ | ||
36 | libencode-jp-perl \ | ||
37 | libencode-jp-h2z-perl \ | ||
38 | libencode-jp-jis7-perl \ | ||
39 | libencode-kr-perl \ | ||
40 | libencode-kr-2022_kr-perl \ | ||
41 | libencode-mime-header-perl \ | ||
42 | libencode-mime-name-perl \ | ||
43 | libencode-symbol-perl \ | ||
44 | libencode-tw-perl \ | ||
45 | libencode-unicode--perl \ | ||
46 | libencode-unicode-utf7-perl \ | ||
47 | libencoding-perl \ | ||
48 | libencode-internal-perl \ | ||
49 | libencode-mime-header-iso_2022_jp-perl \ | ||
50 | libencode-utf8-perl \ | ||
51 | libencode-utf_ebcdic-perl \ | ||
52 | " | ||
53 | |||
54 | BBCLASSEXTEND = "native" | ||