mirror of
https://git.yoctoproject.org/poky
synced 2026-09-08 12:49:32 +02:00
Add missing header file (From OE-Core rev: 3673c759131d2001937037062bf463698f30895c) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.0 KiB
BlitzBasic
31 lines
1.0 KiB
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 \
|
|
file://0001-metadata_downloader-Include-unistd.h-for-lseek.patch \
|
|
"
|
|
|
|
SRCREV = "2bd1041c741c85bc196ca01dcca1eae6099eb742"
|
|
|
|
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"
|