jq_1.6.bb 1.2 KB

12345678910111213141516171819202122232425262728293031
  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://stedolan.github.io/jq/"
  6. BUGTRACKER = "https://github.com/stedolan/jq/issues"
  7. SECTION = "utils"
  8. LICENSE = "MIT"
  9. LIC_FILES_CHKSUM = "file://COPYING;md5=15d03e360fa7399f76d5a4359fc72cbf"
  10. SRC_URI = "https://github.com/stedolan/${BPN}/releases/download/${BP}/${BP}.tar.gz"
  11. UPSTREAM_CHECK_URI = "https://github.com/stedolan/${BPN}/releases"
  12. UPSTREAM_CHECK_REGEX = "jq\-(?P<pver>(\d+\.\d+))(?!_\d+).tar.gz"
  13. SRC_URI[md5sum] = "e68fbd6a992e36f1ac48c99bbf825d6b"
  14. SRC_URI[sha256sum] = "5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72"
  15. inherit autotools-brokensep
  16. PACKAGECONFIG ?= "oniguruma"
  17. PACKAGECONFIG[docs] = "--enable-docs,--disable-docs,ruby-native"
  18. PACKAGECONFIG[maintainer-mode] = "--enable-maintainer-mode,--disable-maintainer-mode,flex-native bison-native"
  19. PACKAGECONFIG[oniguruma] = "--with-oniguruma,--without-oniguruma,onig"
  20. OE_EXTRACONF += " \
  21. --disable-valgrind \
  22. "
  23. BBCLASSEXTEND = "native"