mirror of
https://github.com/optim-enterprises-bv/meta-openwrt.git
synced 2026-01-11 18:35:31 +00:00
This gets rid of some warnings with Yocto master. - does not set any branch parameter. The future default branch used by tools and repositories is uncertain and we will therefore soon require this is set in all git urls. - uses git protocol which is no longer supported by github. Please change to ;protocol=https in the url. Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
28 lines
916 B
BlitzBasic
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
|
|
}
|