mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
c8c88c889a
LLnextgen is an Extended-LL(1) parser generator. It is a rewrite of the LLgen parser generator by D. Grune and C.J.H. Jacobs which is part of the Amsterdam Compiler Kit (ACK). Like all parser generators, LLnextgen takes the description of the grammar with associated actions as input, and generates a parser routine for use in compilers and other text processing programs. PR: ports/185458 Submitted by: Oleksii Tsai <oleksii.tsai@googlemail.com>
31 lines
763 B
Makefile
31 lines
763 B
Makefile
# Created by: Oleksii Tsai <oleksii.tsai@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= LLnextgen
|
|
PORTVERSION= 0.5.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://os.ghalkes.nl/LLnextgen/releases/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= oleksii.tsai@googlemail.com
|
|
COMMENT= Extended LL(1) parser generator
|
|
|
|
LICENSE= GPLv3
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/LLnextgen ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/doc/LLnextgen.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in README COPYING TODO Changelog doc/LLnextgen.pdf \
|
|
doc/LLnextgen.ps.gz doc/calculator.g doc/threadsafe.g
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|