Files
openwrt_yocto/meta-openwrt/recipes-core/jsonpath/jsonpath_git.bb
T
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

28 lines
916 B
BlitzBasic

# Copyright (C) 2016 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "OpenWrt JSON parsing utility"
HOMEPAGE = "http://git.openwrt.org/?p=project/jsonpath.git;a=summary"
LICENSE = "BSD-1-Clause"
LIC_FILES_CHKSUM = "file://main.c;beginline=1;endline=15;md5=e1b007aed2273fc3ec1d16560a17aadc"
SECTION = "base"
DEPENDS = "json-c libubox"
SRCREV = "c7e938d6582a436dddc938539e72dd1320625c54"
SRC_URI = "git://git.openwrt.org/project/jsonpath.git;protocol=https;branch=master;name=jsonpath; \
file://0001-sync-lemon-parser.patch \
file://0002-Declare-ParseTrace.patch \
file://0100-break-lemon-dependency-cycle.patch \
"
SRCREV_jsonpath = "c7e938d6582a436dddc938539e72dd1320625c54"
inherit cmake pkgconfig
S = "${WORKDIR}/git"
B = "${S}"
do_install:append() {
ln -s ${bindir}/jsonpath ${D}${bindir}/jsonfilter
}