diff options
author | pgj <pgj@FreeBSD.org> | 2012-02-19 00:56:16 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-02-19 00:56:16 +0800 |
commit | 8de025089cadcfef19fbdd8d7529d16ed96646c0 (patch) | |
tree | 27239b1a98f02484a9043232f851e426ba26a3af /textproc/hs-yaml | |
parent | 1db8e178d78741b65e356ec0ea06603a43533a16 (diff) | |
download | freebsd-ports-gnome-8de025089cadcfef19fbdd8d7529d16ed96646c0.tar.gz freebsd-ports-gnome-8de025089cadcfef19fbdd8d7529d16ed96646c0.tar.zst freebsd-ports-gnome-8de025089cadcfef19fbdd8d7529d16ed96646c0.zip |
Provides support for parsing and emitting Yaml documents.
This package includes the full libyaml C library version 0.1.2 by Kirill
Simonov in the package so you don't need to worry about any non-Haskell
dependencies.
WWW: http://github.com/snoyberg/yaml/
Obtained from: FreeBSD Haskell
Diffstat (limited to 'textproc/hs-yaml')
-rw-r--r-- | textproc/hs-yaml/Makefile | 20 | ||||
-rw-r--r-- | textproc/hs-yaml/distinfo | 2 | ||||
-rw-r--r-- | textproc/hs-yaml/pkg-descr | 7 |
3 files changed, 29 insertions, 0 deletions
diff --git a/textproc/hs-yaml/Makefile b/textproc/hs-yaml/Makefile new file mode 100644 index 000000000000..813fffc653f8 --- /dev/null +++ b/textproc/hs-yaml/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-yaml +# Date created: December 26, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= yaml +PORTVERSION= 0.4.1.2 +CATEGORIES= textproc haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Low-level binding to the libyaml C library + +LICENSE= BSD + +USE_CABAL= enumerator>=0.4 transformers>=0.1 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/textproc/hs-yaml/distinfo b/textproc/hs-yaml/distinfo new file mode 100644 index 000000000000..653615b1f7cf --- /dev/null +++ b/textproc/hs-yaml/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/yaml-0.4.1.2.tar.gz) = 6b93bc20f24ae3f965ea78edcd527311c9a03275baaaf336a060f2f98a76eeb0 +SIZE (cabal/yaml-0.4.1.2.tar.gz) = 61176 diff --git a/textproc/hs-yaml/pkg-descr b/textproc/hs-yaml/pkg-descr new file mode 100644 index 000000000000..96fa4ac60528 --- /dev/null +++ b/textproc/hs-yaml/pkg-descr @@ -0,0 +1,7 @@ +Provides support for parsing and emitting Yaml documents. + +This package includes the full libyaml C library version 0.1.2 by Kirill +Simonov in the package so you don't need to worry about any non-Haskell +dependencies. + +WWW: http://github.com/snoyberg/yaml/ |