mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 07:40:07 +02:00
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
SUMMARY="A tool to produce simple manual pages"
|
||
DESCRIPTION="help2man is a tool for automatically generating simple manual \
|
||
pages from program output. The program is intended to provide an easy way for \
|
||
software authors to include a manual page in their distribution without \
|
||
having to maintain that document.
|
||
Given a program which produces reasonably standard ‘--help’ and ‘--version’ \
|
||
outputs, help2man can re-arrange that output into something which resembles a \
|
||
manual page."
|
||
HOMEPAGE="http://www.gnu.org/software/help2man/"
|
||
COPYRIGHT="1997-2017 Free Software Foundation"
|
||
LICENSE="GNU GPL v3"
|
||
REVISION="1"
|
||
SOURCE_URI="http://ftpmirror.gnu.org/help2man/help2man-$portVersion.tar.xz"
|
||
CHECKSUM_SHA256="7ca60b2519fdbe97f463fe2df66a6188d18b514bfd44127d985f0234ee2461b1"
|
||
|
||
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
||
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
||
|
||
PROVIDES="
|
||
help2man = $portVersion
|
||
cmd:help2man$secondaryArchSuffix = $portVersion
|
||
"
|
||
REQUIRES="
|
||
haiku$secondaryArchSuffix
|
||
cmd:perl
|
||
"
|
||
|
||
BUILD_REQUIRES="
|
||
haiku${secondaryArchSuffix}_devel
|
||
"
|
||
BUILD_PREREQUIRES="
|
||
cmd:gcc$secondaryArchSuffix
|
||
cmd:ld$secondaryArchSuffix
|
||
cmd:make
|
||
cmd:perl
|
||
cmd:awk
|
||
"
|
||
|
||
BUILD()
|
||
{
|
||
runConfigure ./configure
|
||
make
|
||
}
|
||
|
||
INSTALL()
|
||
{
|
||
make install
|
||
}
|