Files
meta-openembedded/meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb
T
Ross Burton c3ac5cf180 lemon: upgrade to 3.44.2
Lemon is packaged as part of sqlite, and sqlite 3.7.3 was released back
in 2010[1].

As the small source tarballs no longer include the tools, fetch the
sqlite github mirror instead.

Don't bother installing a pretty minimal manpage, as very few projects
use lemon (sqlite itself, and libpbnjson).

[1] https://www.sqlite.org/releaselog/3_7_3.html

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-12-21 08:20:34 -08:00

25 lines
616 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"
S = "${WORKDIR}/git"
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"