Files
haikuports/app-text/unrtf/unrtf-0.21.9.recipe
Jerome Duval fc0936b040 Bump revisions for x86_64 rebuild after time_t change.
* a few apps needed build fix for time_t.
* disable compatibility packages for x86_64.
2017-06-27 15:46:25 +02:00

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="2"
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
}