summaryrefslogtreecommitdiff
path: root/package/utils
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-01-02 11:55:16 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-01-02 11:55:16 +0000
commit2e02c2da18bbf428205129c861aad69f354f3c73 (patch)
tree1d448af2a6f636fbd53d90f67977e3dad7a03005 /package/utils
parentbc370646cd1e25e535f564ae662c9683f1646898 (diff)
downloadmtk-20170518-2e02c2da18bbf428205129c861aad69f354f3c73.zip
mtk-20170518-2e02c2da18bbf428205129c861aad69f354f3c73.tar.gz
mtk-20170518-2e02c2da18bbf428205129c861aad69f354f3c73.tar.bz2
Add jsonpath - a command line utility to extract values from JSON data using XPath-like expressions
SVN-Revision: 39185
Diffstat (limited to 'package/utils')
-rw-r--r--package/utils/jsonpath/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/utils/jsonpath/Makefile b/package/utils/jsonpath/Makefile
new file mode 100644
index 0000000..9e44cf2
--- /dev/null
+++ b/package/utils/jsonpath/Makefile
@@ -0,0 +1,31 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=jsonpath
+PKG_VERSION:=2014-01-02
+PKG_RELEASE=$(PKG_SOURCE_VERSION)
+
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_URL:=git://git.openwrt.org/project/jsonpath.git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_VERSION:=325454c60f282994cf79c69d49edbcea53f2e924
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
+CMAKE_INSTALL:=1
+
+PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
+
+include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/cmake.mk
+
+define Package/jsonpath
+ SECTION:=base
+ CATEGORY:=Base system
+ DEPENDS:=+libubox +libjson-c
+ TITLE:=OpenWrt JSON query utility
+endef
+
+define Package/jsonpath/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/jsonpath $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,jsonpath))