mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +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>
21 lines
602 B
BlitzBasic
21 lines
602 B
BlitzBasic
SUMMARY = "Yet Another JSON Library."
|
|
|
|
DESCRIPTION = "YAJL is a small event-driven (SAX-style) JSON parser \
|
|
written in ANSI C, and a small validating JSON generator."
|
|
|
|
HOMEPAGE = "http://lloyd.github.com/yajl/"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=da2e9aa80962d54e7c726f232a2bd1e8"
|
|
|
|
# Use 1.0.12 tag
|
|
SRCREV = "17b1790fb9c8abbb3c0f7e083864a6a014191d56"
|
|
SRC_URI = "git://github.com/lloyd/yajl;nobranch=1;protocol=https"
|
|
|
|
inherit cmake lib_package
|
|
|
|
|
|
EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')}"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>1(\.\d+)+)"
|