This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Sync Module-CoreList MANIFEST file with what is on CPAN
[perl5.git] / dist / Module-CoreList / Makefile.PL
CommitLineData
3a02dfe7
RGS
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',
0654a75e 9 'ABSTRACT_FROM' => 'lib/Module/CoreList.pm',
3a02dfe7
RGS
10 'PREREQ_PM' => {
11 'Test::More' => '0',
12 },
13 'EXE_FILES' => [ 'corelist' ],
14 'PL_FILES' => {},
15 LICENSE => 'perl',
16 @extra,
17)
18;