mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
As the package maintainer said, this is mostly a release with: "the huge amount of critical bug fixes brought to the library since 2 years" The full list of bugs fixed and other changes is here: https://github.com/uclouvain/openjpeg/blob/openjpeg-2.1/CHANGELOG.md The homepage link was broken so that was fixed. The project also moved to github and does not appear to provide tarballs other than via github archives so the SRC_URI was updated. An explicit dependency on zlib was added even though cmake was finding the sysroot version. Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
20 lines
660 B
BlitzBasic
20 lines
660 B
BlitzBasic
DESCRIPTION = "OpenJPEG library is an open-source JPEG 2000 codec"
|
|
HOMEPAGE = "http://www.openjpeg.org"
|
|
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c648878b4840d7babaade1303e7f108c"
|
|
|
|
SRC_URI = "https://github.com/uclouvain/${BPN}/archive/v${PV}.tar.gz"
|
|
SRC_URI[md5sum] = "0cc4b2aee0a9b6e9e21b7abcd201a3ec"
|
|
SRC_URI[sha256sum] = "82c27f47fc7219e2ed5537ac69545bf15ed8c6ba8e6e1e529f89f7356506dbaa"
|
|
|
|
inherit cmake
|
|
|
|
DEPENDS = "libpng tiff lcms zlib"
|
|
|
|
# standard path for *.cmake
|
|
EXTRA_OECMAKE += "-DOPENJPEG_INSTALL_PACKAGE_DIR=${baselib}/cmake \
|
|
-DOPENJPEG_INSTALL_LIB_DIR:PATH=${libdir}"
|
|
|
|
FILES_${PN}-dev += "${libdir}/cmake/*.cmake"
|