27 lines
465 B
Makefile
27 lines
465 B
Makefile
# $OpenBSD: Makefile,v 1.9 2016/04/09 20:14:49 naddy Exp $
|
|
|
|
COMMENT= convert OpenDocument Text to plain text
|
|
|
|
GH_ACCOUNT = dstosberg
|
|
GH_PROJECT = odt2txt
|
|
GH_TAGNAME = v0.5
|
|
|
|
CATEGORIES= textproc
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
LIB_DEPENDS= converters/libiconv
|
|
|
|
WANTLIB += c iconv z
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_TEST= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/odt2txt ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/odt2txt.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|