diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-07-11 18:44:37 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-14 23:44:34 +0200 |
commit | 258c97116f2e4e1dd6cbb9d23a1d6c7ed476b201 (patch) | |
tree | b0adc53bf482d0571a1d413f2ca313b6145ddca7 /meta-perl | |
parent | 70e575f33daf2d506634c6c941fab272dc52219f (diff) | |
download | meta-openembedded-258c97116f2e4e1dd6cbb9d23a1d6c7ed476b201.tar.gz |
libunicode-linebreak-perl: add recipe
Unicode::LineBreak - UAX #14 Unicode Line Breaking Algorithm.
It's being strongly recommended by po4a.
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl')
-rw-r--r-- | meta-perl/recipes-perl/libunicode/libunicode-linebreak-perl_2017.004.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libunicode/libunicode-linebreak-perl_2017.004.bb b/meta-perl/recipes-perl/libunicode/libunicode-linebreak-perl_2017.004.bb new file mode 100644 index 000000000..5ccb411fa --- /dev/null +++ b/meta-perl/recipes-perl/libunicode/libunicode-linebreak-perl_2017.004.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "Unicode::LineBreak - UAX #14 Unicode Line Breaking Algorithm." | ||
2 | DESCRIPTION = "Unicode::LineBreak performs Line Breaking Algorithm described in Unicode \ | ||
3 | Standard Annex #14 [UAX #14]. East_Asian_Width informative property \ | ||
4 | defined by Annex #11 [UAX #11] will be concerned to determine breaking \ | ||
5 | positions." | ||
6 | SECTION = "libs" | ||
7 | |||
8 | HOMEPAGE = "http://search.cpan.org/~nezumi/Unicode-LineBreak-${PV}/" | ||
9 | |||
10 | LICENSE = "Artistic-1.0 | GPLv1+" | ||
11 | LIC_FILES_CHKSUM = "file://README;md5=77241abd74fec561b3f3de1b44c0241b" | ||
12 | |||
13 | SRC_URI = "${CPAN_MIRROR}/authors/id/N/NE/NEZUMI/Unicode-LineBreak-${PV}.tar.gz" | ||
14 | |||
15 | SRC_URI[md5sum] = "de7672227922260ac92d20bbad29660b" | ||
16 | SRC_URI[sha256sum] = "655bc3c4cb60ad0770d97816716cfe322f24e602c70e595f5941dfa02c40cb76" | ||
17 | |||
18 | S = "${WORKDIR}/Unicode-LineBreak-${PV}" | ||
19 | |||
20 | DEPENDS = "libsombok3 libmime-charset-perl" | ||
21 | |||
22 | RDEPENDS_${PN} = "libsombok3 libmime-charset-perl" | ||
23 | |||
24 | inherit cpan | ||
25 | |||
26 | BBCLASSEXTEND = "native" | ||