mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
This is required by libdnf. (From OE-Core rev: c1d008066f36701b8a8f36ddaeaa626ca6427aed) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
923 B
BlitzBasic
30 lines
923 B
BlitzBasic
SUMMARY = "Library for solving packages and reading repositories"
|
|
HOMEPAGE = "https://github.com/openSUSE/libsolv"
|
|
BUGTRACKER = "https://github.com/openSUSE/libsolv/issues"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.BSD;md5=62272bd11c97396d4aaf1c41bc11f7d8"
|
|
|
|
DEPENDS = "expat zlib rpm"
|
|
|
|
SRC_URI = "git://github.com/openSUSE/libsolv.git \
|
|
"
|
|
SRC_URI_append_libc-musl = " file://0001-Add-fallback-fopencookie-implementation.patch"
|
|
|
|
SRCREV = "ba32f8286d3deec6faaabc79762a4760e9af0a07"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "-DLIB=${baselib} -DMULTI_SEMANTICS=ON -DENABLE_RPMMD=ON -DENABLE_RPMDB=ON"
|
|
|
|
PACKAGES =+ "${PN}-tools ${PN}ext"
|
|
|
|
FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibSolv.cmake"
|
|
FILES_${PN}-tools = "${bindir}/*"
|
|
FILES_${PN}ext = "${libdir}/${PN}ext.so.*"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|