mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-30 03:58:51 +02:00
42 lines
859 B
Plaintext
42 lines
859 B
Plaintext
SUMMARY="Man page viewer and translator"
|
|
DESCRIPTION="
|
|
Parse formatted man pages and man page source from most flavors of UNIX. \
|
|
Convert to HTML, ASCII, TkMan, DocBook, and other formats.
|
|
"
|
|
HOMEPAGE="http://www.sourceforge.net/project/polyglotman"
|
|
LICENSE="Artistic"
|
|
COPYRIGHT="2003 Thomas A. Phelps"
|
|
SRC_URI="http://downloads.sourceforge.net/project/polyglotman/polyglotman/3.2/rman-3.2.tar.gz"
|
|
CHECKSUM_MD5="6d1d67641c6d042595a96a62340d3cc6"
|
|
PATCHES="rman-3.2.patch"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
rman = $portVersion
|
|
cmd:rman = $portVersion compat >= 3
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku >= $haikuVersion
|
|
"
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:ld
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make BINDIR=$binDir MANDIR=$manDir
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir $manDir
|
|
make install BINDIR=$binDir MANDIR=$manDir
|
|
}
|