c4c768d070
odt2txt is a simple converter from OpenDocument Text to plain text. It's a command-line tool which extracts the text out of OpenDocument Texts produced by OpenOffice.org, StarOffice, KOffice and others.
29 lines
536 B
Makefile
29 lines
536 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/04/14 11:28:12 jasper Exp $
|
|
|
|
COMMENT= convert OpenDocument Text to plain text
|
|
|
|
DISTNAME= odt2txt-0.4
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://stosberg.net/odt2txt/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB += c z
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/odt2txt ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/odt2txt.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|