Move File::Fetch from ext/ to cpan/
[p5sagit/p5-mst-13.2.git] / ext / Module-CoreList / Makefile.PL
CommitLineData
3a02dfe7 1use ExtUtils::MakeMaker;
2
3push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009;
4
5WriteMakefile
6(
7 'NAME' => 'Module::CoreList',
8 'VERSION_FROM' => 'lib/Module/CoreList.pm',
9 'PREREQ_PM' => {
10 'Test::More' => '0',
11 },
12 'EXE_FILES' => [ 'corelist' ],
13 'PL_FILES' => {},
14 LICENSE => 'perl',
15 @extra,
16)
17;