mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 13:21:24 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
552 B
BlitzBasic
18 lines
552 B
BlitzBasic
SUMMARY = "NFS client library"
|
|
HOMEPAGE = "https://github.com/sahlberg/libnfs"
|
|
LICENSE = "LGPL-2.1-only & BSD-2-Clause & GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=825301ba17efc9d188ee0abd4b924ada"
|
|
|
|
SRC_URI = "git://github.com/sahlberg/libnfs.git;protocol=https;branch=master \
|
|
file://0001-CMakeLists.txt-respect-CMAKE_INSTALL_LIBDIR-for-mult.patch \
|
|
"
|
|
SRCREV = "18c5c73ee88bb7dc8da0d55dc95164bb77e49dc6"
|
|
|
|
DEPENDS += "gnutls"
|
|
|
|
inherit cmake
|
|
|
|
do_install:append() {
|
|
rm -f ${D}${libdir}/cmake/libnfs/libnfs-config.cmake
|
|
}
|