diff options
| author | Ross Burton <ross.burton@arm.com> | 2023-12-21 10:41:21 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-12-21 08:20:34 -0800 |
| commit | c3ac5cf180f960dbbf6e3a3e76d6d44094873c72 (patch) | |
| tree | 56999f131114bc0ce1c0368e30e94ac972776b9a /meta-oe/recipes-devtools/lemon/lemon_3.44.2.bb | |
| parent | b7d5acb3523c95054a0431a5291866d7b5bde5a2 (diff) | |
| download | meta-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.bb | 24 |
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 @@ | |||
| 1 | DESCRIPTION = "The Lemon Parser Generator" | ||
| 2 | HOMEPAGE = "https://sqlite.org/src/file/doc/lemon.html" | ||
| 3 | LICENSE = "PD" | ||
| 4 | SECTION = "devel" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://tool/lemon.c;endline=8;md5=c7551a78fa3fdecd96d1ad6761d205ee" | ||
| 7 | |||
| 8 | SRC_URI = "git://github.com/sqlite/sqlite;protocol=https;branch=branch-3.44" | ||
| 9 | |||
| 10 | SRCREV = "c8f9803dc32bfee78a9ca2b1abbe39499729219b" | ||
| 11 | |||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | do_compile() { | ||
| 15 | ${CC} ${CFLAGS} ${LDFLAGS} tool/lemon.c -o lemon | ||
| 16 | } | ||
| 17 | |||
| 18 | do_install() { | ||
| 19 | install -d ${D}${bindir} | ||
| 20 | install -m 0755 lemon ${D}${bindir} | ||
| 21 | install -m 0644 tool/lempar.c ${D}${bindir} | ||
| 22 | } | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native nativesdk" | ||
