mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
(From OE-Core rev: 50020e4eb1a9407eadbccff6b79a13e749df422a) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 KiB
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 \
|
|
file://0002-Fixes-to-internal-fopencookie-implementation.patch \
|
|
"
|
|
|
|
SRCREV = "9fa1535e2fc60609c29633925e692603782b477b"
|
|
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 -DENABLE_COMPLEX_DEPS=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"
|