Move Module::Pluggable into ext/ as the next version has actions in its
[p5sagit/p5-mst-13.2.git] / ext / Module / Pluggable / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile
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 ;