freebsd-ports/textproc/xlhtml/Makefile
Emanuel Haupt 7384f71e39 - Support staging
- USES -> gmake
- Define DOCS option
- Remove redundant CONFIGURE_ARGS definition
- Strip binaries
- Add license
2014-02-28 13:29:24 +00:00

33 lines
690 B
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= xlhtml
PORTVERSION= 0.5
PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= textproc
MASTER_SITES= SF/chicago/${PORTNAME}/backend
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Convert Excel and PowerPoint files to HTML and text
LICENSE= GPLv2
USES= gmake
USE_AUTOTOOLS= automake14 autoconf
OPTIONS_DEFINE= DOCS
post-install:
.for dir in xlhtml ppthtml
@${MKDIR} ${STAGEDIR}${DOCSDIR}/${dir}
cd ${WRKSRC}/${dir} && \
${INSTALL_DATA} ChangeLog README THANKS \
${STAGEDIR}${DOCSDIR}/${dir}
.endfor
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xlhtml \
${STAGEDIR}${PREFIX}/bin/ppthtml
.include <bsd.port.mk>