This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move I18N::LangTags from ext/ to dist/
[perl5.git] / ext / 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     'PREREQ_PM' => {
10         'Test::More' => '0',
11     },
12     'EXE_FILES' => [ 'corelist' ],
13     'PL_FILES' => {},
14     LICENSE => 'perl',
15     @extra,
16 )
17 ;