Correct two spelling mistakes, and reformat some comments.
[p5sagit/p5-mst-13.2.git] / ext / Module / Pluggable / Makefile.PL
CommitLineData
848ff2a1 1use ExtUtils::MakeMaker;
2
3WriteMakefile
4(
5 'NAME' => 'Module::Pluggable',
6 'VERSION_FROM' => 'lib/Module/Pluggable.pm',
7 MAN3PODS => {}, # Pods will be built by installman.
8 'PREREQ_PM' => {
9 'File::Basename' => '0',
10 'File::Spec' => '3.00',
11 'Test::More' => '0.62'
12 },
13 'EXE_FILES' => [],
14 'PL_FILES' => {}
15 )
16;