From e1b01b77de5caab17a40a6833c9029c43d7a77f5 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Wed, 22 Aug 2018 08:25:42 +0200 Subject: [PATCH] jq - Command-line JSON processor jq can transform JSON in various ways, by selecting, iterating, reducing and otherwise mangling JSON documents --- jq.be0 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 jq.be0 diff --git a/jq.be0 b/jq.be0 new file mode 100755 index 000000000..602f4521b --- /dev/null +++ b/jq.be0 @@ -0,0 +1,34 @@ +#!/usr/bin/env beesh + +# BEE_VERSION jq-1.5-0 + +SRCURL[0]="https://github.com/stedolan/jq/releases/download/jq-${PKGVERSION}/jq-${PKGVERSION}.tar.gz" + +# BEE_CONFIGURE=compat + +# BEE_BUILDTYPE= + +# EXCLUDE="" + +# build_in_sourcedir + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +mee_build() { + bee_build CFLAGS='-Wno-implicit-fallthrough' +} + +mee_install() { + bee_install + rm -v ${D}/usr/lib/libjq.a +}