[Module-build-checkins] Module-Build/lib/Module/Build Authoring.pod,1.8,1.9
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <kwi...@us...> - 2005-05-05 17:20:59
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19799/lib/Module/Build Modified Files: Authoring.pod Log Message: Note several options for creating dev trees Index: Authoring.pod =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Authoring.pod,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Authoring.pod 10 Apr 2005 17:46:46 -0000 1.8 +++ Authoring.pod 5 May 2005 17:20:39 -0000 1.9 @@ -1251,6 +1251,20 @@ See also the documentation for the C<subclass()> method. +=head1 STARTING MODULE DEVELOPMENT + +When starting development on a new module, it's rarely worth your time +to create a tree of all the files by hand. Some automatic +module-creators are available: the oldest is C<h2xs>, which has +shipped with perl itself for a long time. Its name reflects the fact +that modules were originally conceived of as a way to wrap up a C +library (thus the C<h> part) into perl extensions (thus the C<xs> +part). + +These days, C<h2xs> has largely been superseded by modules like +C<ExtUtils::ModuleMaker>, C<Module::Starter>, and C<Module::Maker>. +They have varying degrees of support for C<Module::Build>. + =head1 MIGRATION |