blob: 0f40815ccd6a90a1471f6014dad7dd4d08654ca8 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "Lightweight and flexible command-line JSON processor"
2DESCRIPTION = "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."
Patrick Williamsddad1a12017-02-23 20:36:32 -06005HOMEPAGE = "https://stedolan.github.io/jq/"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05006BUGTRACKER = "https://github.com/stedolan/jq/issues"
7SECTION = "utils"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05008LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://COPYING;md5=29dd0c35d7e391bb8d515eacf7592e00"
10
Patrick Williamsddad1a12017-02-23 20:36:32 -060011SRC_URI = "https://github.com/stedolan/${BPN}/releases/download/${BP}/${BP}.tar.gz \
12 file://Support-without-oniguruma.patch \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050013"
14
15SRC_URI[md5sum] = "0933532b086bd8b6a41c1b162b1731f9"
16SRC_URI[sha256sum] = "c4d2bfec6436341113419debf479d833692cc5cdab7eb0326b5a4d4fbe9f493c"
17
18inherit autotools
19
Patrick Williamsddad1a12017-02-23 20:36:32 -060020PACKAGECONFIG ?= "oniguruma"
21
22PACKAGECONFIG[docs] = "--enable-docs,--disable-docs,ruby-native"
23PACKAGECONFIG[maintainer-mode] = "--enable-maintainer-mode,--disable-maintainer-mode,flex-native bison-native"
24PACKAGECONFIG[oniguruma] = "--with-oniguruma,--without-oniguruma,onig"
25
26OE_EXTRACONF += " \
27 --disable-valgrind \
28"
29
30BBCLASSEXTEND = "native"