diff options
Diffstat (limited to 'meta-oe/recipes-devtools/jq/jq_1.4.bb')
-rw-r--r-- | meta-oe/recipes-devtools/jq/jq_1.4.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/jq/jq_1.4.bb b/meta-oe/recipes-devtools/jq/jq_1.4.bb new file mode 100644 index 000000000..6e50803a3 --- /dev/null +++ b/meta-oe/recipes-devtools/jq/jq_1.4.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Lightweight and flexible command-line JSON processor" | ||
2 | DESCRIPTION = "jq is like sed for JSON data, you can use it to slice and \ | ||
3 | filter and map and transform structured data with the same \ | ||
4 | ease that sed, awk, grep and friends let you play with text." | ||
5 | HOMEPAGE = "http://stedolan.github.io/jq/" | ||
6 | BUGTRACKER = "https://github.com/stedolan/jq/issues" | ||
7 | SECTION = "utils" | ||
8 | |||
9 | LICENSE = "MIT" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=244a1fb9cf472474a062d67069dec653" | ||
11 | |||
12 | DEPENDS = "flex-native bison-native" | ||
13 | |||
14 | SRC_URI = "http://stedolan.github.io/${BPN}/download/source/${BP}.tar.gz \ | ||
15 | " | ||
16 | SRC_URI[md5sum] = "e3c75a4f805bb5342c9f4b3603fb248f" | ||
17 | SRC_URI[sha256sum] = "998c41babeb57b4304e65b4eb73094279b3ab1e63801b6b4bddd487ce009b39d" | ||
18 | |||
19 | inherit autotools | ||
20 | |||
21 | # Don't build documentation (generation requires ruby) | ||
22 | EXTRA_OECONF = "--disable-docs" | ||