mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Make the cmake files reproducible and rather than hardcode-installed into /usr/lib. [RP: Tweak commit message] (From OE-Core rev: 5d16b99ad74fe4acadfb1752b975e6eebacf9d1c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
855 B
BlitzBasic
28 lines
855 B
BlitzBasic
SUMMARY = "the Git linkable library"
|
|
HOMEPAGE = "http://libgit2.github.com/"
|
|
LICENSE = "GPL-2.0-with-GCC-exception & MIT & OpenSSL & BSD-3-Clause & Zlib & ISC & LGPL-2.1-or-later & CC0-1.0 & BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8eacfdc17c8f4d219e131a073973b97d"
|
|
|
|
DEPENDS = "curl openssl zlib libssh2 libgcrypt libpcre2"
|
|
|
|
SRC_URI = "git://github.com/libgit2/libgit2.git;branch=main;protocol=https \
|
|
file://0001-src-libgit2-CMakeLists.txt-install-cmake-files-into-.patch \
|
|
"
|
|
SRCREV = "338e6fb681369ff0537719095e22ce9dc602dbf0"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "\
|
|
-DBUILD_TESTS=OFF \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DREGEX_BACKEND='pcre2' \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
do_install:append() {
|
|
sed -i -e 's,${RECIPE_SYSROOT},,g' ${D}${libdir}/cmake/libgit2/libgit2Targets.cmake
|
|
}
|