[Module-build-checkins] Module-Build Build.PL,1.52,1.53
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2005-02-06 13:33:53
|
Update of /cvsroot/module-build/Module-Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17556 Modified Files: Build.PL Log Message: Add a few dependencies and an HTML_support feature Index: Build.PL =================================================================== RCS file: /cvsroot/module-build/Module-Build/Build.PL,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- Build.PL 27 Dec 2004 04:56:18 -0000 1.52 +++ Build.PL 6 Feb 2005 13:33:44 -0000 1.53 @@ -28,9 +28,12 @@ 'File::Path' => 0, 'File::Spec' => 0, 'ExtUtils::Install' => 0, + 'ExtUtils::Manifest' => 0, + 'ExtUtils::Mkbootstrap' => 0, 'IO::File' => 0, 'Cwd' => 0, 'Text::ParseWords' => 0, + 'Getopt::Long' => 0, }, recommends => { 'Archive::Tar' => '1.08', @@ -61,6 +64,11 @@ description => "Can create Unix man pages", requires => { 'Pod::Man' => 0 }, }, + HTML_support => + { + description => "Can create HTML documentation", + requires => { 'Pod::Html' => 0 }, + }, }, add_to_cleanup => ['t/Sample/pod2htm*'], |