diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-14 17:09:17 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-14 17:09:17 +0000 |
commit | 5a9b7c229dfa3c5b7801dff31a8d2d534b4ab170 (patch) | |
tree | be039253c6cebd3e47d25ba5021fcc81f73db40b /freebsd/Makefile | |
parent | 7f65a4e9149b1c8bbf5df42812782cbfabb0756b (diff) | |
download | pandoc-5a9b7c229dfa3c5b7801dff31a8d2d534b4ab170.tar.gz |
Added freebsd directory, with freebsd port, to repository.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@531 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'freebsd/Makefile')
-rw-r--r-- | freebsd/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/freebsd/Makefile b/freebsd/Makefile new file mode 100644 index 000000000..d2886bc87 --- /dev/null +++ b/freebsd/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: pandoc +# Date created: 9 February 2007 +# Whom: John MacFarlane <jgm@berkeley.edu> +# +# $FreeBSD: ports/textproc/pandoc/Makefile,v 1.1 2007/02/11 17:21:55 nox Exp $ +# + +PORTNAME= pandoc +PORTVERSION= 0.3 +CATEGORIES= textproc haskell +MASTER_SITES= http://pandoc.googlecode.com/files/ +DISTNAME= pandoc-${PORTVERSION} + +MAINTAINER= jgm@berkeley.edu +COMMENT= A general markup converter + +BUILD_DEPENDS= ghc>=6.4:${PORTSDIR}/lang/ghc + +MANCOMPRESSED= no +MAN1= pandoc.1 markdown2pdf.1 html2markdown.1 hsmarkdown.1 + +USE_GMAKE= yes +USE_PERL5= yes + +PLIST_FILES= bin/pandoc bin/markdown2pdf bin/html2markdown bin/hsmarkdown +PORTDOCS= BUGS README README.html +SCRIPTS= hsmarkdown html2markdown markdown2pdf + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/dist/build/pandoc/pandoc ${PREFIX}/bin +.for script in ${SCRIPTS} + @${INSTALL_SCRIPT} ${WRKSRC}/${script} ${PREFIX}/bin +.endfor +.for man in ${MAN1} + @${INSTALL_MAN} ${WRKSRC}/man/man1/${man} ${PREFIX}/man/man1 +.endfor +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |