From 3e6833507a92ab9871b4381fce31408d42c4f5f1 Mon Sep 17 00:00:00 2001 From: augiedoggie Date: Sat, 5 Feb 2022 00:24:14 -0700 Subject: [PATCH] jq: include manpage in the package (#6596) --- app-misc/jq/jq-1.6.recipe | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-misc/jq/jq-1.6.recipe b/app-misc/jq/jq-1.6.recipe index ebf6adfd1..df62fdaed 100644 --- a/app-misc/jq/jq-1.6.recipe +++ b/app-misc/jq/jq-1.6.recipe @@ -10,7 +10,7 @@ is often shorter and simpler than you’d expect." HOMEPAGE="http://stedolan.github.io/jq/" COPYRIGHT="2012,2015 Stephen Dolan" LICENSE="MIT" -REVISION="2" +REVISION="3" SOURCE_URI="http://github.com/stedolan/jq/archive/jq-$portVersion.tar.gz" CHECKSUM_SHA256="158182b85f3be9e23ab1dc50cfcc24e415aade2a0b8a5d9f709e0b587666d61b" SOURCE_DIR="jq-jq-$portVersion" @@ -59,4 +59,7 @@ INSTALL() { mkdir -p $commandBinDir cp -a jq $commandBinDir + + mkdir -p $manDir/man1 + cp -a jq.1 $manDir/man1 }