mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
5d131fd4f6
* autodetected as reported in bitbake world status e-mails: libgit2-0.24.1: libgit2 rdepends on libssh2, but it isn't a build dependency, missing libssh2 in DEPENDS or PACKAGECONFIG? [build-deps] * log.do_package: DEBUG: libgit2: Dependency libssh2.so.1 requires package libssh2 (used by files: /OE/build/oe-core/tmp-glibc/work/i586-oe-linux/libgit2/0.24.1-r0/packages-split/libgit2/usr/lib/libgit2.so.0.24.0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
24 lines
594 B
BlitzBasic
24 lines
594 B
BlitzBasic
SUMMARY = "the Git linkable library"
|
|
HOMEPAGE = "http://libgit2.github.com/"
|
|
LICENSE = "GPL-2.0-with-GCC-exception"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=34197a479f637beb9e09e56893f48bc2"
|
|
|
|
DEPENDS = "curl openssl zlib libssh2"
|
|
|
|
SRC_URI = "git://github.com/libgit2/libgit2.git;branch=maint/v0.24"
|
|
SRCREV = "211e117a0590583a720c53172406f34186c543bd"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "\
|
|
-DTHREADSAFE=ON \
|
|
-DBUILD_CLAR=OFF \
|
|
-DSHA1_TYPE="builtin" \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DBUILD_EXAMPLES=OFF \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native"
|