41 lines
960 B
Makefile
41 lines
960 B
Makefile
# $OpenBSD: Makefile,v 1.26 2013/03/11 11:42:40 espie Exp $
|
|
|
|
COMMENT= converts MSWord Documents to ASCII Text and PostScript
|
|
|
|
DISTNAME= antiword-0.37
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://www.winfield.demon.nl/
|
|
|
|
MAINTAINER= David Cathcart <cathcart@openbsd.org>
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/linux/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
WANTLIB= c
|
|
|
|
MAKE_FLAGS= CC="${CC}" CFLAGS="${CFLAGS} -Wall -DNDEBUG" \
|
|
LD="${CC}"
|
|
|
|
USE_GROFF = Yes
|
|
NO_TEST= Yes
|
|
|
|
DOCS= FAQ Netscape QandA ReadMe Mutt
|
|
|
|
pre-configure:
|
|
@perl -pi -e "s|%%PREFIX%%|${PREFIX}|g" \
|
|
${WRKSRC}/antiword.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/antiword ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/antiword
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/antiword
|
|
cd ${WRKSRC}/Docs; ${INSTALL_DATA} ${DOCS} \
|
|
${PREFIX}/share/doc/antiword
|
|
${INSTALL_DATA} ${WRKSRC}/Resources/* \
|
|
${PREFIX}/share/antiword
|
|
|
|
.include <bsd.port.mk>
|