mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
Opkg only depends on libsolv proper, splitting libsolv-ext pkg-config reduces opkg dependencies. (From OE-Core rev: fa9a75c5c968ca878c702bd52f983ddf96ecca65) Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
962 B
BlitzBasic
31 lines
962 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"
|
|
|
|
SRC_URI = "git://github.com/openSUSE/libsolv.git \
|
|
file://0001-Split-libsolvext-into-it-s-own-pkg-config-file.patch \
|
|
"
|
|
SRC_URI_append_libc-musl = " file://0001-Add-fallback-fopencookie-implementation.patch"
|
|
|
|
SRCREV = "4049d57b026d3a67c8c164ed20db85ff62b87728"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "-DLIB=${baselib} -DMULTI_SEMANTICS=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"
|