mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +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>
26 lines
695 B
BlitzBasic
26 lines
695 B
BlitzBasic
SUMMARY = "Cyaml library"
|
|
DESCRIPTION = "LibCYAML is a library for reading and writing structured YAML documents."
|
|
HOMEPAGE = "https://github.com/tlsa/libcyaml"
|
|
SECTION = "libs"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=fe6f0e49348c87bddd5d27803dceaaf0"
|
|
DEPENDS = " \
|
|
libyaml \
|
|
"
|
|
SRCREV = "07ff8654a270ec9b410acd3152b60de9e9f941af"
|
|
|
|
SRC_URI = "git://github.com/tlsa/libcyaml.git;protocol=https;branch=main"
|
|
|
|
|
|
inherit pkgconfig
|
|
|
|
EXTRA_OEMAKE = "'PREFIX=""' 'DESTDIR=${D}' 'CFLAGS=${CFLAGS}' 'LIBDIR=${libdir}' 'INCLUDEDIR=${includedir}' 'VARIANT=release'"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
do_install() {
|
|
oe_runmake install
|
|
}
|
|
|
|
CFLAGS += "-pedantic -Wall -Wextra -O3 -Iinclude" |