summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/jq/jq_1.8.0.bb
diff options
context:
space:
mode:
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.bb48
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 @@
1SUMMARY = "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."
5HOMEPAGE = "https://jqlang.github.io/jq/"
6BUGTRACKER = "https://github.com/jqlang/jq/issues"
7SECTION = "utils"
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://COPYING;md5=08ffb5ac7e7e6bfc66968b89f01f512a"
10
11GITHUB_BASE_URI = "https://github.com/jqlang/${BPN}/releases/"
12SRC_URI = "${GITHUB_BASE_URI}/download/${BPN}-${PV}/${BPN}-${PV}.tar.gz \
13 file://run-ptest \
14 "
15SRC_URI[sha256sum] = "91811577f91d9a6195ff50c2bffec9b72c8429dc05ec3ea022fd95c06d2b319c"
16
17inherit autotools github-releases ptest
18
19UPSTREAM_CHECK_REGEX = "releases/tag/${BPN}-(?P<pver>\d+(\.\d+)+)"
20
21PACKAGECONFIG ?= "oniguruma"
22
23PACKAGECONFIG[docs] = "--enable-docs,--disable-docs,ruby-native"
24PACKAGECONFIG[maintainer-mode] = "--enable-maintainer-mode,--disable-maintainer-mode,flex-native bison-native"
25PACKAGECONFIG[oniguruma] = "--with-oniguruma,--without-oniguruma,onig"
26# enable if you want ptest running under valgrind
27PACKAGECONFIG[valgrind] = "--enable-valgrind,--disable-valgrind,valgrind"
28
29do_configure:append() {
30 sed -i -e "/^ac_cs_config=/ s:${WORKDIR}::g" ${B}/config.status
31}
32
33do_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
46RDEPENDS:${PN}-ptest += "tzdata"
47
48BBCLASSEXTEND = "native"