utils: jq: bump version to 1.6
[feed/packages.git] / utils / jq / Makefile
1 #
2 # Copyright (C) 2017 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=jq
11 PKG_VERSION:=1.6
12 PKG_RELEASE:=1
13 PKG_LICENSE:=BSD
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=https://github.com/stedolan/jq/releases/download/jq-$(PKG_VERSION)/
17 PKG_HASH:=9625784cf2e4fd9842f1d407681ce4878b5b0dcddbcd31c6135114a30c71e6a8
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 ifdef CONFIG_USE_MIPS16
24 TARGET_CFLAGS += -fno-ipa-sra
25 endif
26
27 TARGET_CFLAGS += -std=c99
28
29 CONFIGURE_ARGS+= \
30 --disable-docs \
31 --disable-valgrind \
32 --without-oniguruma
33
34 define Package/jq
35 SECTION:=utils
36 CATEGORY:=Utilities
37 TITLE:=Lightweight and flexible command-line JSON processor.
38 URL:=https://stedolan.github.io/jq/
39 MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
40 endef
41
42 define Package/jq/description
43 Lightweight and flexible command-line JSON processor.
44 endef
45
46 define Package/jq/install
47 $(INSTALL_DIR) $(1)/usr/bin
48 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
49 endef
50
51 $(eval $(call BuildPackage,jq))