22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
25 lines
596 B
Makefile
25 lines
596 B
Makefile
# Created by: Dennis Herrmann <dhn@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= smu
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://s01.de/~tox/files/smu/ \
|
|
http://mirror.4bit.ws/
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Simple interpreter for a simplified markdown dialect
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PLIST_FILES= bin/smu man/man1/smu.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|cc|${CC}|g' ${WRKSRC}/config.mk
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/smu ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/smu.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|