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

use 5.006;

use ExtUtils::MakeMaker;

my $EUMM_VERSION = $ExtUtils::MakeMaker::VERSION;
$EUMM_VERSION =~ s/_//g;

WriteMakefile(
    NAME              => 'Exporter',
    VERSION_FROM      => 'lib/Exporter.pm',
    INSTALLDIRS       => 'perl', # core since forever
    PREREQ_PM         => {},

    ( $] >= 5.005 ? (
      ABSTRACT_FROM  => 'lib/Exporter.pm',
    ) : () ),
    ( $EUMM_VERSION >= 6.31 ? (
      LICENSE => 'perl',
    ) : () ),
    ( $EUMM_VERSION >= 6.32 && 0 ? (
      EXTRA_META => {
        recommends => { 
          'Test::Pod' => 1.18, 
          'Test::Pod::Coverage' => 1.04 
        },
      }, 
    ) : () )
);