Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16722/lib/Module/Build
Added Files:
Authoring.pod
Log Message:
Split documentation into user and author documents. This change is purely structural; no content has been changed.
--- NEW FILE: Authoring.pod ---
=head1 NAME
Module::Build::Authoring - Authoring Module::Build modules
=head1 DESCRIPTION
When creating a C<Build.PL> script for a module, something like the
following code will typically be used:
use Module::Build;
my $build = Module::Build->new
(
module_name => 'Foo::Bar',
license => 'perl',
requires => {
'perl' => '5.6.1',
'Some::Module' => '1.23',
'Other::Module' => '>= 1.2, != 1.5, < 2.0',
[...1159 lines suppressed...]
Development questions, bug reports, and patches should be sent to the
Module-Build mailing list at mod...@li... .
Bug reports are also welcome at
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build .
An anonymous CVS repository containing the latest development version
is available; see http://sourceforge.net/cvs/?group_id=45731 for the
details of how to access it.
=head1 SEE ALSO
perl(1), Module::Build(3), Module::Build::Cookbook(3),
ExtUtils::MakeMaker(3), YAML(3)
http://www.dsmit.com/cons/
=cut
|