diff options
author | pgj <pgj@FreeBSD.org> | 2011-05-09 02:41:26 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2011-05-09 02:41:26 +0800 |
commit | 3efcc8261371e0eaaa027de43c689e9b45eee934 (patch) | |
tree | aa5ebd47dc925f9ec30d0c317bc859540a0ef662 | |
parent | 8f038253eb9c10c402eecb3e3741922588e1235f (diff) | |
download | freebsd-ports-gnome-3efcc8261371e0eaaa027de43c689e9b45eee934.tar.gz freebsd-ports-gnome-3efcc8261371e0eaaa027de43c689e9b45eee934.tar.zst freebsd-ports-gnome-3efcc8261371e0eaaa027de43c689e9b45eee934.zip |
This package contains definitions for the 'Pandoc' data structure, which is
used by pandoc to represent structured documents. These definitions used to
live in the pandoc package, but starting with pandoc 1.7, they have been
split off, so that other packages can use them without drawing in all of
pandoc's dependencies, and pandoc itself can depend on packages (like
citeproc-hs) that use them.
Text.Pandoc.Builder provides functions for building up Pandoc structures
programmatically.
Text.Pandoc.Generic provides generic functions for manipulating Pandoc
documents.
WWW: http://johnmacfarlane.net/pandoc
Obtained from: FreeBSD Haskell
-rw-r--r-- | textproc/hs-pandoc-types/Makefile | 22 | ||||
-rw-r--r-- | textproc/hs-pandoc-types/distinfo | 2 | ||||
-rw-r--r-- | textproc/hs-pandoc-types/pkg-descr | 14 |
3 files changed, 38 insertions, 0 deletions
diff --git a/textproc/hs-pandoc-types/Makefile b/textproc/hs-pandoc-types/Makefile new file mode 100644 index 000000000000..7689fb99eaf2 --- /dev/null +++ b/textproc/hs-pandoc-types/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: hs-pandoc-types +# Date created: March 13, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= pandoc-types +PORTVERSION= 1.8 +CATEGORIES= textproc haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Types for representing a structured document + +LICENSE= GPLv2 +FILE_LICENSE= COPYING + +CABAL_SETUP= Setup.hs +USE_CABAL= syb + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/textproc/hs-pandoc-types/distinfo b/textproc/hs-pandoc-types/distinfo new file mode 100644 index 000000000000..83c300e398b7 --- /dev/null +++ b/textproc/hs-pandoc-types/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/pandoc-types-1.8.tar.gz) = 28295a45bb0ce02699501fb166fea1936ca6f0873673cd1e0ce3a9566b0b79c6 +SIZE (cabal/pandoc-types-1.8.tar.gz) = 12962 diff --git a/textproc/hs-pandoc-types/pkg-descr b/textproc/hs-pandoc-types/pkg-descr new file mode 100644 index 000000000000..be3fda6b9980 --- /dev/null +++ b/textproc/hs-pandoc-types/pkg-descr @@ -0,0 +1,14 @@ +This package contains definitions for the 'Pandoc' data structure, which is +used by pandoc to represent structured documents. These definitions used to +live in the pandoc package, but starting with pandoc 1.7, they have been +split off, so that other packages can use them without drawing in all of +pandoc's dependencies, and pandoc itself can depend on packages (like +citeproc-hs) that use them. + +Text.Pandoc.Builder provides functions for building up Pandoc structures +programmatically. + +Text.Pandoc.Generic provides generic functions for manipulating Pandoc +documents. + +WWW: http://johnmacfarlane.net/pandoc |