NAME

Config::Maker - File (especialy config) generation library.

SYNOPSIS

  use Config::Maker

  $metaconfig = Config::Maker::Config->new($metaconfigfile)

  $config = Config::Maker::Config->new($configfile)

  open OUT, '>', $outputfile;

  Config::Maker::Driver->process($templatefile, $config, \*OUT);

  close OUT;

DESCRIPTION

This is the main module for Config::Maker file generation library. It provides generic rules for the parser and few routines used from them.

For usage description see the configit(1) manpage. For details about varous parts of the library see respective module's documentation.

AUTHOR

Jan Hudec <bulb@ucw.cz>

COPYRIGHT AND LICENSE

Copyright 2004 Jan Hudec. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

configit(1), Config::Maker::Config(3pm), Config::Maker::Driver(3pm), Config::Maker::Path(3pm), Config::Maker::Type(3pm), Config::Maker::Path(3pm), perl(1), Parse::RecDescent(3pm).