mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
50 lines
1.0 KiB
Bash
50 lines
1.0 KiB
Bash
SUMMARY="A simple converter from OpenDocument Text to plain text"
|
|
DESCRIPTION="odt2txt is a command-line tool which extracts the text out of \
|
|
OpenDocument Texts produced by LibreOffice, OpenOffice, StarOfficem, KOffice \
|
|
and others."
|
|
HOMEPAGE="https://github.com/dstosberg/odt2txt"
|
|
COPYRIGHT="2002-2016 Dennis Stosberg"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="2"
|
|
SOURCE_URI="https://github.com/dstosberg/odt2txt/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="23a889109ca9087a719c638758f14cc3b867a5dcf30a6c90bf6a0985073556dd"
|
|
PATCHES="odt2txt-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
odt2txt = $portVersion
|
|
cmd:odt2txt = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libiconv
|
|
lib:libz
|
|
lib:libzip
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libiconv
|
|
devel:libz
|
|
devel:libzip
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:groff
|
|
cmd:make
|
|
cmd:pkg_config
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make HAVE_LIBZIP=1 $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# Upstream Makefile has DESTDIR set to /usr/local mistakenly,
|
|
# hence the need to unset it.
|
|
make install HAVE_LIBZIP=1 DESTDIR= PREFIX=$prefix MANDIR=$manDir
|
|
}
|