summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-12-21 10:41:21 +0000
committerKhem Raj <raj.khem@gmail.com>2023-12-21 08:20:34 -0800
commitc3ac5cf180f960dbbf6e3a3e76d6d44094873c72 (patch)
tree56999f131114bc0ce1c0368e30e94ac972776b9a /meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb
parentb7d5acb3523c95054a0431a5291866d7b5bde5a2 (diff)
downloadmeta-openembedded-c3ac5cf180f960dbbf6e3a3e76d6d44094873c72.tar.gz
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>
Diffstat (limited to 'meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb')
-rw-r--r--meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb b/meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb
new file mode 100644
index 0000000000..2904a454dc
--- /dev/null
+++ b/meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb
@@ -0,0 +1,24 @@
1DESCRIPTION = "The Lemon Parser Generator"
2HOMEPAGE = "https://sqlite.org/src/file/doc/lemon.html"
3LICENSE = "PD"
4SECTION = "devel"
5
6LIC_FILES_CHKSUM = "file://tool/lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee"
7
8SRC_URI = "git://github.com/sqlite/sqlite;protocol=https;branch=branch-3.44"
9
10SRCREV = "c8f9803dc32bfee78a9ca2b1abbe39499729219b"
11
12S = "${WORKDIR}/git"
13
14do_compile() {
15 ${CC} ${CFLAGS} ${LDFLAGS} tool/lemon.c -o lemon
16}
17
18do_install() {
19 install -d ${D}${bindir}
20 install -m 0755 lemon ${D}${bindir}
21 install -m 0644 tool/lempar.c ${D}${bindir}
22}
23
24BBCLASSEXTEND = "native nativesdk"