1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/devel/cligen/pkg-descr
Kirill Ponomarev 7b3b2e6a5f Add devel/cligen:
cligen builds and interprets datastructures (a parse-tree) which a
library (libcligen) interprets in runtime. It is fast and efficient
and helps you develop CLIs easier. You enter a CLI syntax either in
a text file, you write callback functions where you call the right
library routines.

WWW: http://cligen.se/

PR:		227663
Submitted by:	Dave Cornejo <dcornejo@netgate.com>
2018-04-24 14:49:54 +00:00

12 lines
577 B
Plaintext

CLIgen is a Command-Line Interface generator written by Olof Hagsand.
Well, actually it is not really a generator, since it does not generate code
for CLI's. Instead, it builds and interprets datastructures (a parse-tree)
which a library (libcligen) interprets in runtime. It is fast and efficient
and helps you develop CLI:s easier. You enter a CLI syntax either in a text
file, you write callback functions where you call the right library routines.
The callback functions add the semantics, that is, what the commands in the
CLI are supposed to do.
WWW: http://cligen.se/