mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers. Two recipes in meta-selftest were not converted as they're that way specifically for testing. A change in linux-firmware was also skipped and may need a more manual tweak. (From OE-Core rev: ceda3238cdbf1beb216ae9ddb242470d5dfc25e0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
982 B
BlitzBasic
30 lines
982 B
BlitzBasic
SUMMARY = "A library providing C and Python (libcURL like) API \
|
|
for downloading linux repository metadata and packages."
|
|
HOMEPAGE = "https://github.com/rpm-software-management/librepo"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
SRC_URI = "git://github.com/rpm-software-management/librepo.git;branch=master;protocol=https \
|
|
file://0002-Do-not-try-to-obtain-PYTHON_INSTALL_DIR-by-running-p.patch \
|
|
file://0004-Set-gpgme-variables-with-pkg-config-not-with-cmake-m.patch \
|
|
"
|
|
|
|
SRCREV = "3b9a8d17188ba602d139f79b6e61305030f21109"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "curl glib-2.0 openssl attr gpgme libxml2"
|
|
|
|
inherit cmake setuptools3-base pkgconfig
|
|
|
|
EXTRA_OECMAKE = " \
|
|
-DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} \
|
|
-DPYTHON_DESIRED=3 \
|
|
-DENABLE_TESTS=OFF \
|
|
-DENABLE_DOCS=OFF \
|
|
-DWITH_ZCHUNK=OFF \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|