mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
64 lines
1.3 KiB
Bash
64 lines
1.3 KiB
Bash
SUMMARY="Rich Text Format command line converter"
|
|
DESCRIPTION="UnRTF is a command-line program written in C which converts \
|
|
documents in Rich Text Format (.rtf) to HTML, LaTeX, troff macros, and RTF \
|
|
itself."
|
|
HOMEPAGE="https://www.gnu.org/software/unrtf/"
|
|
COPYRIGHT="2001-2015 Free Software Foundation"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.gnu.org/software/unrtf/unrtf-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="22a37826f96d754e335fb69f8036c068c00dd01ee9edd9461a36df0085fb8ddd"
|
|
|
|
ARCHITECTURES="!x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="!x86_gcc2 x86"
|
|
|
|
if [ "$targetArchitecture" != x86_gcc2 ]; then
|
|
commandBinDir=$binDir
|
|
else
|
|
commandBinDir=$prefix/bin
|
|
fi
|
|
|
|
PROVIDES="
|
|
unrtf$secondaryArchSuffix = $portVersion
|
|
cmd:unrtf = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libiconv$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libiconv$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autom4te
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
aclocal
|
|
automake --add-missing
|
|
runConfigure --omit-dirs binDir ./configure --bindir=$commandBinDir\
|
|
LIBS=-liconv
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
sed -i \
|
|
-e "s|$dataDir/|/system/$relativeDataDir/|" \
|
|
$manDir/man1/unrtf.1
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|