diff options
author | tota <tota@FreeBSD.org> | 2015-08-08 14:19:03 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2015-08-08 14:19:03 +0800 |
commit | 9c35c315e2e46e25bf3d92614f0b3e47bfbad4c4 (patch) | |
tree | 0e1a64fdf047b37037a83a177a48d635b5de8d63 | |
parent | efb458e86b370fb1f30b7e664ec691feac34536a (diff) | |
download | freebsd-ports-graphics-9c35c315e2e46e25bf3d92614f0b3e47bfbad4c4.tar.gz freebsd-ports-graphics-9c35c315e2e46e25bf3d92614f0b3e47bfbad4c4.tar.zst freebsd-ports-graphics-9c35c315e2e46e25bf3d92614f0b3e47bfbad4c4.zip |
- Add new port: textproc/R-cran-markdown
Provides R bindings to the 'Sundown' 'Markdown' rendering library
(https://github.com/vmg/sundown). 'Markdown' is a plain-text
formatting syntax that can be converted to 'XHTML' or other formats.
WWW: https://cran.r-project.org/web/packages/markdown/
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/R-cran-markdown/Makefile | 18 | ||||
-rw-r--r-- | textproc/R-cran-markdown/distinfo | 2 | ||||
-rw-r--r-- | textproc/R-cran-markdown/pkg-descr | 5 |
4 files changed, 26 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 5a290908fe2..e90247a7bed 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -7,6 +7,7 @@ SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML SUBDIR += R-cran-htmltools + SUBDIR += R-cran-markdown SUBDIR += R-cran-pystr SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr diff --git a/textproc/R-cran-markdown/Makefile b/textproc/R-cran-markdown/Makefile new file mode 100644 index 00000000000..7e59f94e6ff --- /dev/null +++ b/textproc/R-cran-markdown/Makefile @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= markdown +PORTVERSION= 0.7.7 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Markdown Rendering for R + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-mime>=0.3:${PORTSDIR}/misc/R-cran-mime + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/textproc/R-cran-markdown/distinfo b/textproc/R-cran-markdown/distinfo new file mode 100644 index 00000000000..652c3cd4e97 --- /dev/null +++ b/textproc/R-cran-markdown/distinfo @@ -0,0 +1,2 @@ +SHA256 (markdown_0.7.7.tar.gz) = 0b86c3a4e42bbc425be229f70a4a0efdca0522f48c6ea1bf0285c6b122854102 +SIZE (markdown_0.7.7.tar.gz) = 79427 diff --git a/textproc/R-cran-markdown/pkg-descr b/textproc/R-cran-markdown/pkg-descr new file mode 100644 index 00000000000..9c12a813f75 --- /dev/null +++ b/textproc/R-cran-markdown/pkg-descr @@ -0,0 +1,5 @@ +Provides R bindings to the 'Sundown' 'Markdown' rendering library +(https://github.com/vmg/sundown). 'Markdown' is a plain-text +formatting syntax that can be converted to 'XHTML' or other formats. + +WWW: https://cran.r-project.org/web/packages/markdown/ |