1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

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.  In this case, the
variable type needs a ToText instance.

WWW:	http://www.yesodweb.com/book/templates

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-18 17:34:41 +00:00
parent 4aeb3e86c3
commit 3e9dbd8663
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291721
5 changed files with 31 additions and 0 deletions

View File

@ -222,6 +222,7 @@ shakespeare_port= www/hs-shakespeare
shakespeare-css_port= www/hs-shakespeare-css
shakespeare-i18n_port= www/hs-shakespeare-i18n
shakespeare-js_port= www/hs-shakespeare-js
shakespeare-text_port= www/hs-shakespeare-text
show_port= devel/hs-show
simple-sendfile_port= net/hs-simple-sendfile
skein_port= security/hs-skein

View File

@ -305,6 +305,7 @@
SUBDIR += hs-shakespeare-css
SUBDIR += hs-shakespeare-i18n
SUBDIR += hs-shakespeare-js
SUBDIR += hs-shakespeare-text
SUBDIR += hs-snap
SUBDIR += hs-snap-core
SUBDIR += hs-snap-server

View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-shakespeare-text
# Date created: December 26, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= shakespeare-text
PORTVERSION= 0.10.3
CATEGORIES= www haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Interpolation with quasi-quotation: put variables strings
LICENSE= BSD
USE_CABAL= shakespeare>=0.10 text>=0.7
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/shakespeare-text-0.10.3.tar.gz) = da00f8b9a9b31710d5ec08ad68aca4d62ec85ffb8982cb648f25b6e93f707870
SIZE (cabal/shakespeare-text-0.10.3.tar.gz) = 4342

View File

@ -0,0 +1,7 @@
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. In this case, the
variable type needs a ToText instance.
WWW: http://www.yesodweb.com/book/templates