mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
00c8384ee2
Toolkit in as few lines of code as possible. It is intended for use in light-usage, low-memory, or low-cpu templating situations, where you may need to upgrade to the full feature set in the future, or if you want the familiarity of TT-style templates. It is intended to have fully-compatible template and stash usage, with a limited by similar Perl API. Unlike Template Toolkit, Template::Tiny will process templates without a compile phase (but despite this is still quicker, owing to heavy use of the Perl regular expression engine. WWW: http://search.cpan.org/dist/Template-Tiny/ PR: ports/144823 Submitted by: ports at c0decafe.net
26 lines
524 B
Makefile
26 lines
524 B
Makefile
# New ports collection makefile for: p5-Template-Tiny
|
|
# Date created: 2010-03-17
|
|
# Whom: ports@c0decafe.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Template-Tiny
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= ports@c0decafe.net
|
|
COMMENT= Template Toolkit reimplemented in as little code as possible
|
|
|
|
BUILD_DEPENDS= p5-Capture-Tiny>=0.07:${PORTSDIR}/devel/p5-Capture-Tiny
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_PERL5= yes
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Template::Tiny.3
|
|
|
|
.include <bsd.port.mk>
|