mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
01232d6238
crossguid adds an automatically generated cmake configuration file named “crossguid-config.cmake”,
which generally works for kodi but causes a reproducibility issue because it contains the full path
to ${STAGING_LIBDIR}/libuuid.so.
It was fixed using a `sed` command that changed the line to `/usr/lib/libuuid.so`.
This does not work if `HOST != TARGET`, since in that case a link is created to native libuuid.
Completely removing “crossguid-config.cmake” resolves this issue, since Kodi then uses pkgconfig to locate crossguid.
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
24 lines
753 B
BlitzBasic
24 lines
753 B
BlitzBasic
# Copyright (C) 2017 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Lightweight cross platform C++ GUID/UUID library"
|
|
HOMEPAGE = "https://github.com/graeme-hill/crossguid"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1373274bc8d8001edc54933919f36f68"
|
|
DEPENDS += "util-linux"
|
|
|
|
SRCREV = "ca1bf4b810e2d188d04cb6286f957008ee1b7681"
|
|
SRC_URI = "git://github.com/graeme-hill/crossguid;protocol=https;branch=master \
|
|
file://run-ptest \
|
|
file://0001-include-missing-cstdint.patch"
|
|
|
|
inherit cmake ptest
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${datadir}/crossguid/cmake
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -D ${B}/crossguid-test ${D}${PTEST_PATH}/tests/crossguid-test
|
|
}
|