Files
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +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"