This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
av_fetch: de-duplicate small bit of code
[perl5.git] / dist / Module-CoreList / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009;
4
5 WriteMakefile
6 (
7     'NAME' => 'Module::CoreList',
8     'VERSION_FROM' => 'lib/Module/CoreList.pm',
9     'ABSTRACT_FROM' => 'lib/Module/CoreList.pm',
10     'PREREQ_PM' => {
11         'Test::More' => '0',
12     },
13     'EXE_FILES' => [ 'corelist' ],
14     'PL_FILES' => {},
15     LICENSE => 'perl',
16     @extra,
17 )
18 ;