diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2012-02-18 17:11:03 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2012-02-18 17:11:03 +0000 |
commit | 4ec18f72072e79105bd8b12cb88a16bad4d2594a (patch) | |
tree | 75377be46ceee19b97cd406f9976fce3eac65c42 /www/hs-shakespeare | |
parent | 230e9ffc4e8b57a9a4ae5bec4bb10b1772dac6a3 (diff) | |
download | ports-4ec18f72072e79105bd8b12cb88a16bad4d2594a.tar.gz ports-4ec18f72072e79105bd8b12cb88a16bad4d2594a.zip |
Shakespeare is a template family for type-safe, efficient templates with
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell
Notes
Notes:
svn path=/head/; revision=291710
Diffstat (limited to 'www/hs-shakespeare')
-rw-r--r-- | www/hs-shakespeare/Makefile | 20 | ||||
-rw-r--r-- | www/hs-shakespeare/distinfo | 2 | ||||
-rw-r--r-- | www/hs-shakespeare/pkg-descr | 6 |
3 files changed, 28 insertions, 0 deletions
diff --git a/www/hs-shakespeare/Makefile b/www/hs-shakespeare/Makefile new file mode 100644 index 000000000000..fcfaedb1362b --- /dev/null +++ b/www/hs-shakespeare/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-shakespeare +# Date created: December 25, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= shakespeare +PORTVERSION= 0.10.2 +CATEGORIES= www haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= A toolkit for making compile-time interpolated templates + +LICENSE= BSD + +USE_CABAL= parsec>=2 text>=0.7 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/www/hs-shakespeare/distinfo b/www/hs-shakespeare/distinfo new file mode 100644 index 000000000000..c31bc4ab3000 --- /dev/null +++ b/www/hs-shakespeare/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/shakespeare-0.10.2.tar.gz) = 8c63e160932ac004624ee9dfb02a13a5049e3434b08751f7783df0646a63779c +SIZE (cabal/shakespeare-0.10.2.tar.gz) = 6202 diff --git a/www/hs-shakespeare/pkg-descr b/www/hs-shakespeare/pkg-descr new file mode 100644 index 000000000000..93ffd238640b --- /dev/null +++ b/www/hs-shakespeare/pkg-descr @@ -0,0 +1,6 @@ +Shakespeare is a template family for type-safe, efficient templates with +simple variable interpolation. Shakespeare templates can be used inline +with a quasi-quoter or in an external file. Shakespeare interpolates +variables according to the type being inserted. + +WWW: http://www.yesodweb.com/book/templates |