mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
The following error will occur when multilib is enabled: ERROR: libharu-2.3.0-r0 do_package: QA Issue: libharu: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libhpdfs.a Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. libharu: 2 installed and not shipped files. [installed-vs-shipped] ERROR: libharu-2.3.0-r0 do_package: Fatal QA errors found, failing task. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
716 B
BlitzBasic
25 lines
716 B
BlitzBasic
SUMMARY = "free PDF library"
|
|
HOMEPAGE = "http://libharu.org"
|
|
DESCRIPTION = "libHaru is a library for generating PDF files. \
|
|
It is free, open source, written in ANSI C and cross platform. "
|
|
|
|
LICENSE = "Zlib"
|
|
LIC_FILES_CHKSUM = "file://README;md5=3ee6bc1f64d9cc7907f44840c8e50cb1"
|
|
|
|
SRC_URI = "git://github.com/libharu/libharu.git;branch=2_3 \
|
|
file://libharu-RELEASE_2_3_0_cmake.patch \
|
|
file://0001-Install-static-lib-into-var-libdir-rather-than-hardc.patch \
|
|
"
|
|
|
|
SRCREV = "4ae1d5f4c84459f130bf1b1ef4c5c330af8eca5d"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
DEPENDS += "libpng zlib"
|
|
|
|
do_install_append() {
|
|
mkdir -p ${D}/${datadir}/libharu
|
|
mv ${D}/libharu ${D}/${datadir}
|
|
}
|