mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 17:39:39 +01:00
Some of them were introduced by mass-removal of S = WORKDIR/git assignments;
rather than try to fix up (or redo) just these, I've run this sed command over
the whole tree:
sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc`
The rationale is that more than one empty line is wasting vertical screen space, and
does nothing for readability.
(From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
833 B
BlitzBasic
26 lines
833 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"
|
|
|
|
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
|
|
}
|