freebsd-ports/textproc/opentoken/files/opentoken.gpr
John Marino d1e5f1ed50 Add new Ada port: textproc/opentoken 5.0a
OpenToken is a facility for performing token analysis and parsing within
the Ada language. It is designed to provide all the functionality of a
traditional lexical analyzer/parser generator, such as lex/yacc. But due
to the magic of inheritance and runtime polymorphism it is implemented
entirely in Ada as withed-in code. No precompilation step is required, and
no messy tool-generated source code is created. The tradeoff is that the
grammar is generated at runtime.

WWW: http://stephe-leake.org/ada/opentoken.html
2014-03-14 13:43:26 +00:00

7 lines
238 B
Text

project OpenToken is
for Languages use ("ada");
for Library_Name use "opentoken";
for Source_Dirs use ("../../include/opentoken");
for Library_Dir use "../../lib/opentoken";
for Externally_Built use "true";
end OpenToken;