Merge pull request #4099 from dangowrt/freeradius3-ldap
[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.5
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_MD5SUM:=0933532b086bd8b6a41c1b162b1731f9
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 define Package/jq
28 SECTION:=utils
29 CATEGORY:=Utilities
30 TITLE:=Lightweight and flexible command-line JSON processor.
31 URL:=https://stedolan.github.io/jq/
32 MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
33 endef
34
35 define Package/jq/description
36 Lightweight and flexible command-line JSON processor.
37 endef
38
39 define Package/jq/install
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
42 endef
43
44 $(eval $(call BuildPackage,jq))