The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

push @extra, 'INSTALLDIRS' => 'perl' if $] >= 5.008009;

WriteMakefile
(
    'NAME' => 'Module::CoreList',
    'VERSION_FROM' => 'lib/Module/CoreList.pm',
    'ABSTRACT_FROM' => 'lib/Module/CoreList.pm',
    'PREREQ_PM' => {
	'Test::More' => '0',
    },
    'EXE_FILES' => [ 'corelist' ],
    'PL_FILES' => {},
    LICENSE => 'perl',
    @extra,
)
;