blob: bfa09ded6ebb3df51ec937cafcfe827f8431201f [file] [log] [blame]
Jens Rehsackc5bbb0b2018-02-25 21:48:03 +01001DESCRIPTION = "This module is a thin wrapper for JSON::XS-compatible modules with a few \
2additional features. All the backend modules convert a Perl data structure \
3to a JSON text as of RFC4627 (which we know is obsolete but we still stick \
4to; see below for an option to support part of RFC7159) and vice versa. \
5This module uses JSON::XS by default, and when JSON::XS is not available, \
6this module falls back on JSON::PP, which is in the Perl core since 5.14. \
7If JSON::PP is not available either, this module then falls back on \
8JSON::backportPP (which is actually JSON::PP in a different .pm file) \
9bundled in the same distribution as this module. You can also explicitly \
10specify to use Cpanel::JSON::XS, a fork of JSON::XS by Reini Urban."
11
12SECTION = "libs"
Andrew Geissler4acc0a92021-03-11 11:08:24 -060013LICENSE = "Artistic-1.0 | GPL-1.0+"
Jens Rehsackc5bbb0b2018-02-25 21:48:03 +010014PR = "r0"
15
16MAINTAINER= "Poky <poky@yoctoproject.org>"
17HOMEPAGE= "https://metacpan.org/release/JSON"
18
19LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Artistic-1.0;md5=cda03bbdc3c1951996392b872397b798 \
Andrew Geissler4acc0a92021-03-11 11:08:24 -060020file://${COMMON_LICENSE_DIR}/GPL-1.0-or-later;md5=30c0b8a5048cc2f4be5ff15ef0d8cf61"
Jens Rehsackc5bbb0b2018-02-25 21:48:03 +010021
22SRC_URI = "https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-2.97001.tar.gz"
23
24SRC_URI[md5sum] = "693d6ff167496362f8ec6c3c5b8ba5ee"
25SRC_URI[sha256sum] = "e277d9385633574923f48c297e1b8acad3170c69fa590e31fa466040fc6f8f5a"
26
27S = "${WORKDIR}/JSON-${PV}"
28
29inherit cpan allarch
30
31BBCLASSEXTEND = "native"