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

use ExtUtils::MakeMaker;

my %mm = ( NAME         => 'Time::Local',
           VERSION_FROM => 'lib/Time/Local.pm',
           AUTHOR       => 'Dave Rolsky <autarch@urth.org>',
           INSTALLDIRS  => 'perl',
         );
$mm{LICENSE} = 'perl'
    if $ExtUtils::MakeMaker::VERSION >= 6.31;

WriteMakefile(%mm);