xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/jasper/jasper_2.0.33.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Jpeg 2000 implementation"
2HOMEPAGE = "https://jasper-software.github.io/jasper/"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=a80440d1d8f17d041c71c7271d6e06eb"
5
6SRC_URI = "git://github.com/jasper-software/jasper.git;protocol=https;branch=master"
7SRCREV = "fe00207dc10db1d7cc6f2757961c5c6bdfd10973"
8
9CVE_CHECK_IGNORE += "\
10    CVE-2015-8751 \
11"
12
13S = "${WORKDIR}/git"
14
15inherit cmake
16
17PACKAGECONFIG ??= ""
18PACKAGECONFIG[jpeg] = "-DJAS_ENABLE_LIBJPEG=true, -DJAS_ENABLE_LIBJPEG=false, jpeg"
19PACKAGECONFIG[opengl] = "-DJAS_ENABLE_OPENGL=true, -DJAS_ENABLE_OPENGL=false, freeglut"
20
21EXTRA_OECMAKE:append = " -DJAS_ENABLE_SHARED=true"
22
23do_install:append() {
24    chrpath -d ${D}${bindir}/jasper
25    chrpath -d ${D}${bindir}/imginfo
26    chrpath -d ${D}${bindir}/imgcmp
27    chrpath -d ${D}${libdir}/libjasper.so.*
28}
29