summaryrefslogtreecommitdiff
path: root/package/jq
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbrodkorb@conet.de>2015-04-27 16:55:45 +0200
committerWaldemar Brodkorb <wbrodkorb@conet.de>2015-04-27 16:55:45 +0200
commit15b02d33b97197bc88439dc048f8cc9a1610504a (patch)
treeba23006ece9fdf5d1e955888f213d3be2faa6f32 /package/jq
parent1d641802dbca3db554fba5ea31c9c41f5133611c (diff)
add jq tool
Diffstat (limited to 'package/jq')
-rw-r--r--package/jq/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/jq/Makefile b/package/jq/Makefile
new file mode 100644
index 000000000..d59eb8a47
--- /dev/null
+++ b/package/jq/Makefile
@@ -0,0 +1,26 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= jq
+PKG_VERSION:= 1.4
+PKG_RELEASE:= 1
+PKG_HASH:= 998c41babeb57b4304e65b4eb73094279b3ab1e63801b6b4bddd487ce009b39d
+PKG_DESCR:= command-line json processor
+PKG_SECTION:= sys/misc
+PKG_URL:= http://stedolan.github.io/jq/
+PKG_SITES:= http://stedolan.github.io/jq/download/source/
+
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,JQ,jq,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
+
+jq-install:
+ $(INSTALL_DIR) $(IDIR_JQ)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/jq \
+ $(IDIR_JQ)/usr/bin
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk