diff options
Diffstat (limited to 'meta-oe/recipes-devtools/jq/jq_1.8.0.bb')
-rw-r--r-- | meta-oe/recipes-devtools/jq/jq_1.8.0.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/jq/jq_1.8.0.bb b/meta-oe/recipes-devtools/jq/jq_1.8.0.bb new file mode 100644 index 0000000000..4aaf27da9a --- /dev/null +++ b/meta-oe/recipes-devtools/jq/jq_1.8.0.bb | |||
@@ -0,0 +1,48 @@ | |||
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 = "https://jqlang.github.io/jq/" | ||
6 | BUGTRACKER = "https://github.com/jqlang/jq/issues" | ||
7 | SECTION = "utils" | ||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=08ffb5ac7e7e6bfc66968b89f01f512a" | ||
10 | |||
11 | GITHUB_BASE_URI = "https://github.com/jqlang/${BPN}/releases/" | ||
12 | SRC_URI = "${GITHUB_BASE_URI}/download/${BPN}-${PV}/${BPN}-${PV}.tar.gz \ | ||
13 | file://run-ptest \ | ||
14 | " | ||
15 | SRC_URI[sha256sum] = "91811577f91d9a6195ff50c2bffec9b72c8429dc05ec3ea022fd95c06d2b319c" | ||
16 | |||
17 | inherit autotools github-releases ptest | ||
18 | |||
19 | UPSTREAM_CHECK_REGEX = "releases/tag/${BPN}-(?P<pver>\d+(\.\d+)+)" | ||
20 | |||
21 | PACKAGECONFIG ?= "oniguruma" | ||
22 | |||
23 | PACKAGECONFIG[docs] = "--enable-docs,--disable-docs,ruby-native" | ||
24 | PACKAGECONFIG[maintainer-mode] = "--enable-maintainer-mode,--disable-maintainer-mode,flex-native bison-native" | ||
25 | PACKAGECONFIG[oniguruma] = "--with-oniguruma,--without-oniguruma,onig" | ||
26 | # enable if you want ptest running under valgrind | ||
27 | PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind" | ||
28 | |||
29 | do_configure:append() { | ||
30 | sed -i -e "/^ac_cs_config=/ s:${WORKDIR}::g" ${B}/config.status | ||
31 | } | ||
32 | |||
33 | do_install_ptest() { | ||
34 | cp -rf ${S}/tests ${D}${PTEST_PATH} | ||
35 | cp -rf ${B}/.libs ${D}${PTEST_PATH} | ||
36 | # libjq.so.* is packaged in the main jq component, so remove it from ptest | ||
37 | rm -f ${D}${PTEST_PATH}/.libs/libjq.so.* | ||
38 | ln -sf ${bindir}/jq ${D}${PTEST_PATH} | ||
39 | if [ "${@bb.utils.contains('PACKAGECONFIG', 'valgrind', 'true', 'false', d)}" = "false" ]; then | ||
40 | sed -i 's:#export NO_VALGRIND=1:export NO_VALGRIND=1:g' ${D}${PTEST_PATH}/run-ptest | ||
41 | fi | ||
42 | # handle multilib | ||
43 | sed -i s:@libdir@:${libdir}:g ${D}${PTEST_PATH}/run-ptest | ||
44 | } | ||
45 | |||
46 | RDEPENDS:${PN}-ptest += "tzdata" | ||
47 | |||
48 | BBCLASSEXTEND = "native" | ||