Tweak print/photoprint version 0.4.2.p2_7
[dports.git] / devel / hs-cmdargs / pkg-descr
1 This library provides an easy way to define command line parsers. Most users
2 will want to use the "System.Console.CmdArgs.Implicit" module, whose
3 documentation contains an example.
4
5  * System.Console.CmdArgs.Explicit provides a way to write command line
6    parsers for both single mode programs (most programs) and multiple mode
7    programs (e.g. darcs or cabal). Parsers are defined by constructing a
8    data structure.
9
10  * System.Console.CmdArgs.Implicit provides a way to concisely define
11    command line parsers, up to three times shorter than getopt. These
12    parsers are translated into the Explicit data type.
13
14  * System.Console.CmdArgs.GetOpt provides a wrapper allowing compatiblity
15    with existing getopt parsers, mapping to the Explicit data type.
16
17 WWW: http://community.haskell.org/~ndm/cmdargs/