0
0
Fork 0
haikuports/app-misc/jq/jq-1.6.recipe

63 lines
1.6 KiB
Bash
Raw Permalink Normal View History

2015-01-15 17:37:15 +00:00
SUMMARY="A lightweight and flexible command-line JSON processor"
DESCRIPTION="jq is like sed for JSON data you can use it to slice \
and filter and map and transform structured data with the same ease \
that sed, awk, grep and friends let you play with text. \
It is written in portable C, and it has zero runtime dependencies. \
You can download a single binary, scp it to a far away machine, \
and expect it to work. It can mangle the data format that you have into \
the one that you want with very little effort, and the program to do so \
is often shorter and simpler than youd expect."
2015-01-15 17:37:15 +00:00
HOMEPAGE="http://stedolan.github.io/jq/"
COPYRIGHT="2012,2015 Stephen Dolan"
LICENSE="MIT"
2020-05-09 20:22:27 +00:00
REVISION="2"
SOURCE_URI="http://github.com/stedolan/jq/archive/jq-$portVersion.tar.gz"
2019-11-24 17:39:47 +00:00
CHECKSUM_SHA256="158182b85f3be9e23ab1dc50cfcc24e415aade2a0b8a5d9f709e0b587666d61b"
SOURCE_DIR="jq-jq-$portVersion"
2015-01-15 17:37:15 +00:00
ARCHITECTURES="all !x86_gcc2"
2015-01-15 17:37:15 +00:00
SECONDARY_ARCHITECTURES="x86"
commandBinDir=$binDir
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandBinDir=$prefix/bin
fi
2015-01-15 17:37:15 +00:00
PROVIDES="
jq = $portVersion
cmd:jq = $portVersion
2015-01-15 17:37:15 +00:00
"
REQUIRES="
haiku${secondaryArchSuffix}
2019-11-24 17:39:47 +00:00
lib:libonig$secondaryArchSuffix
2015-01-15 17:37:15 +00:00
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
2019-11-24 17:39:47 +00:00
devel:libonig$secondaryArchSuffix >= 5
"
BUILD_PREREQUIRES="
cmd:aclocal
2015-01-15 17:37:15 +00:00
cmd:awk
cmd:autoconf
cmd:autoreconf
cmd:gcc$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
2015-01-15 17:37:15 +00:00
"
BUILD()
{
2019-11-24 17:39:47 +00:00
touch src/lexer.c src/parser.c
autoreconf -fi
2015-01-15 17:37:15 +00:00
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
mkdir -p $commandBinDir
cp -a jq $commandBinDir
2015-01-15 17:37:15 +00:00
}