mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
8caa288127
Latte is a simple language for marking up text in a very expressive way. Includes the Latte library, which allows you to build translators from Latte to any other text format you choose, and a demonstration application that converts Latte text into HTML. PR: 13151 Submitted by: Dominik Rothert <dr@domix.de>
26 lines
589 B
Makefile
26 lines
589 B
Makefile
# New ports collection makefile for: latte
|
|
# Version required: 1.1
|
|
# Date created: 15 August 1999
|
|
# Whom: Dominik Rothert <dr@domix.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= latte-1.1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.latte.org/ \
|
|
ftp://ftp.brasslantern.com/pub/zanshin/latte/
|
|
|
|
MAINTAINER= dr@domix.de
|
|
|
|
USE_NEWGCC= yes
|
|
USE_LIBTOOL= yes
|
|
MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}"
|
|
|
|
post-install:
|
|
strip ${PREFIX}/bin/latte-html
|
|
${LN} -sf ${PREFIX}/bin/latte-html ${PREFIX}/bin/latte
|
|
${CP} -Rp ${WRKSRC}/tests ${PREFIX}/share/latte/
|
|
|
|
.include <bsd.port.mk>
|