1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-23 20:51:43 +00:00
freebsd-ports/devel/re2c/Makefile
Eivind Eklund a070b1eb31 Initial import of re2c, a program to compile regular expression to C.
This is basically the same concept as lex, except this time it doesn't
turn your code inside out, and it generates actual C code to parse the
expressions (not tables), and the resulting code is usually about 2
times faster than flex.
1998-05-16 17:41:25 +00:00

27 lines
558 B
Makefile

# New ports collection makefile for: re2c
# Version required: 0.5
# Date created: 14 May 1998
# Whom: Eivind Eklund <eivind@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= re2c.0.5
PKGNAME= re2c-0.5
CATEGORIES= devel
MASTER_SITES= ftp://csg.uwaterloo.ca/pub/peter/ \
ftp://ftp.uni-trier.de/pub/unix/compiler-toolkit/re2c/ \
ftp://ftp.tut.ac.jp/.h3/UNIX/lib/
MAINTAINER= eivind@FreeBSD.ORG
MAN1= re2c.1
ALL_TARGET= default
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/re2c ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/re2c.1 ${PREFIX}/man/man1
.include <bsd.port.mk>