mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.0 KiB
BlitzBasic
33 lines
1.0 KiB
BlitzBasic
SUMMARY = "Library for solving packages and reading repositories"
|
|
DESCRIPTION = "This is libsolv, a free package dependency solver using a satisfiability algorithm 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 \
|
|
"
|
|
|
|
SRCREV = "c773294be6b0a2425f344a8999f173fb00cfd16f"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.contains('PACKAGE_CLASSES','package_rpm','rpm','',d)}"
|
|
PACKAGECONFIG[rpm] = "-DENABLE_RPMMD=ON -DENABLE_RPMDB=ON -DENABLE_RPMDB_BDB=ON,,db rpm"
|
|
|
|
EXTRA_OECMAKE = "-DMULTI_SEMANTICS=ON -DENABLE_COMPLEX_DEPS=ON"
|
|
|
|
PACKAGES =+ "${PN}-tools ${PN}ext"
|
|
|
|
FILES:${PN}-tools = "${bindir}/*"
|
|
FILES:${PN}ext = "${libdir}/${PN}ext.so.*"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|