Move all to deprecated folder.
This commit is contained in:
8
deprecated/firmware/buildroot/package/jq/Config.in
Normal file
8
deprecated/firmware/buildroot/package/jq/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_JQ
|
||||
bool "jq"
|
||||
help
|
||||
jq is like sed for JSON data - you can use it to slice and filter
|
||||
and map and transform structured data with the same ease that sed,
|
||||
awk, grep and friends let you play with text.
|
||||
|
||||
http://stedolan.github.io/jq/
|
||||
11
deprecated/firmware/buildroot/package/jq/Config.in.host
Normal file
11
deprecated/firmware/buildroot/package/jq/Config.in.host
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_HOST_JQ
|
||||
bool "host jq"
|
||||
help
|
||||
jq is like sed for JSON data - you can use it to slice and filter
|
||||
and map and transform structured data with the same ease that sed,
|
||||
awk, grep and friends let you play with text.
|
||||
|
||||
As a host tool, jq can be useful to create/edit/merge/check JSON
|
||||
files from a post-build script.
|
||||
|
||||
http://stedolan.github.io/jq/
|
||||
2
deprecated/firmware/buildroot/package/jq/jq.hash
Normal file
2
deprecated/firmware/buildroot/package/jq/jq.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 c4d2bfec6436341113419debf479d833692cc5cdab7eb0326b5a4d4fbe9f493c jq-1.5.tar.gz
|
||||
21
deprecated/firmware/buildroot/package/jq/jq.mk
Normal file
21
deprecated/firmware/buildroot/package/jq/jq.mk
Normal file
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# jq
|
||||
#
|
||||
################################################################################
|
||||
|
||||
JQ_VERSION = 1.5
|
||||
JQ_SITE = https://github.com/stedolan/jq/releases/download/jq-$(JQ_VERSION)
|
||||
JQ_LICENSE = MIT (code), CC-BY-3.0 (documentation)
|
||||
JQ_LICENSE_FILES = COPYING
|
||||
|
||||
# uses c99 specific features
|
||||
JQ_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99"
|
||||
HOST_JQ_CONF_ENV += CFLAGS="$(HOST_CFLAGS) -std=c99"
|
||||
|
||||
# jq explicitly enables maintainer mode, which we don't need/want
|
||||
JQ_CONF_OPTS += --disable-maintainer-mode
|
||||
HOST_JQ_CONF_OPTS += --disable-maintainer-mode
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user