mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
1ca2ea6ab8
Approved by: portmgr blanket
35 lines
797 B
Makefile
35 lines
797 B
Makefile
# Created by: Anton Berezin <tobez@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= markdown
|
|
PORTVERSION= 1.0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= http://daringfireball.net/projects/downloads/
|
|
DISTNAME= Markdown_${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Text-to-HTML conversion tool for web writers
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/License.text
|
|
|
|
NO_BUILD= yes
|
|
USES= shebangfix perl5 zip
|
|
SHEBANG_FILES= Markdown.pl
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= Markdown-Readme.text
|
|
|
|
PLIST_FILES= bin/markdown
|
|
|
|
CONFLICTS_INSTALL= discount
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Markdown.pl ${STAGEDIR}${PREFIX}/bin/markdown
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} "${WRKSRC}/Markdown Readme.text" ${STAGEDIR}${DOCSDIR}/Markdown-Readme.text
|
|
|
|
.include <bsd.port.mk>
|