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>
24 lines
595 B
BlitzBasic
24 lines
595 B
BlitzBasic
DESCRIPTION = "The Lemon Parser Generator"
|
|
HOMEPAGE = "https://sqlite.org/src/file/doc/lemon.html"
|
|
LICENSE = "PD"
|
|
SECTION = "devel"
|
|
|
|
LIC_FILES_CHKSUM = "file://tool/lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee"
|
|
|
|
SRC_URI = "git://github.com/sqlite/sqlite;protocol=https;branch=branch-3.44"
|
|
|
|
SRCREV = "c8f9803dc32bfee78a9ca2b1abbe39499729219b"
|
|
|
|
|
|
do_compile() {
|
|
${CC} ${CFLAGS} ${LDFLAGS} tool/lemon.c -o lemon
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 lemon ${D}${bindir}
|
|
install -m 0644 tool/lempar.c ${D}${bindir}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|