summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/poppler/poppler-data_0.4.7.bb21
1 files changed, 18 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/poppler/poppler-data_0.4.7.bb b/meta-oe/recipes-support/poppler/poppler-data_0.4.7.bb
index 4f55e9f2d..27c411028 100644
--- a/meta-oe/recipes-support/poppler/poppler-data_0.4.7.bb
+++ b/meta-oe/recipes-support/poppler/poppler-data_0.4.7.bb
@@ -1,5 +1,7 @@
1SUMMARY = "Poppler is a PDF rendering library based on the xpdf-3.0 code base" 1SUMMARY = "Encoding files for Poppler"
2LICENSE = "Adobe" 2DESCRIPTION = "Encoding files for use with poppler that enable poppler to \
3 correctly render CJK and Cyrrilic."
4LICENSE = "BSD & GPLv2 & GPLv3+"
3LIC_FILES_CHKSUM = "file://COPYING;md5=4870b98343f0bbb25fa43b9d2ba59448 \ 5LIC_FILES_CHKSUM = "file://COPYING;md5=4870b98343f0bbb25fa43b9d2ba59448 \
4 file://COPYING.adobe;md5=63c6a8a9df204c00461fa5f163d8a663 \ 6 file://COPYING.adobe;md5=63c6a8a9df204c00461fa5f163d8a663 \
5 file://COPYING.gpl2;md5=751419260aa954499f7abaabaa882bbe \ 7 file://COPYING.gpl2;md5=751419260aa954499f7abaabaa882bbe \
@@ -7,15 +9,28 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4870b98343f0bbb25fa43b9d2ba59448 \
7 9
8inherit allarch 10inherit allarch
9 11
10SRC_URI = "http://poppler.freedesktop.org/${BP}.tar.gz" 12INHIBIT_DEFAULT_DEPS = "1"
13
14CMAP_RESOURCES_BASE = "https://github.com/adobe-type-tools/cmap-resources/raw/0561ebca035813ed04c3485bca636a0aa7abdc1d/cmapresources_identity-0/CMap"
15
16SRC_URI = "http://poppler.freedesktop.org/${BP}.tar.gz \
17 ${CMAP_RESOURCES_BASE}/Identity-H;name=idh \
18 ${CMAP_RESOURCES_BASE}/Identity-V;name=idv"
19
11SRC_URI[md5sum] = "636a8f2b9f6df9e7ced8ec0946961eaf" 20SRC_URI[md5sum] = "636a8f2b9f6df9e7ced8ec0946961eaf"
12SRC_URI[sha256sum] = "e752b0d88a7aba54574152143e7bf76436a7ef51977c55d6bd9a48dccde3a7de" 21SRC_URI[sha256sum] = "e752b0d88a7aba54574152143e7bf76436a7ef51977c55d6bd9a48dccde3a7de"
22SRC_URI[idh.md5sum] = "009c93cf0141ab7bd6acb7eea14306cc"
23SRC_URI[idh.sha256sum] = "ae702c203a82ea124e9b96590f821db6fbf8754e2c4547a9dba0e82f94739e95"
24SRC_URI[idv.md5sum] = "2f32a45d43d001c26eeac6b878855fbf"
25SRC_URI[idv.sha256sum] = "89a85daf7031e93c883e76b9168a226dfd585bf5506e9e1956772163f15cb082"
13 26
14do_compile() { 27do_compile() {
15} 28}
16 29
17do_install() { 30do_install() {
18 oe_runmake install DESTDIR=${D} 31 oe_runmake install DESTDIR=${D}
32 install -d ${D}${datadir}/poppler/cMap
33 install -m644 ${WORKDIR}/Identity-* ${D}${datadir}/poppler/cMap/
19} 34}
20 35
21FILES_${PN} += "${datadir}" 36FILES_${PN} += "${datadir}"