###################################################################### # Makefile.PL for Data::Throttler # 2007, Mike Schilli ###################################################################### use ExtUtils::MakeMaker; my $meta_merge = { META_MERGE => { resources => { repository => 'http://github.com/mschilli/data-throttler-perl', }, } }; WriteMakefile( 'NAME' => 'Data::Throttler', 'VERSION_FROM' => 'Throttler.pm', # finds $VERSION 'PREREQ_PM' => { Set::IntSpan => 0, Log::Log4perl => 1.0, YAML => 0.62, # (optional) Text::ASCIITable => 0, }, # e.g., Module::Name => 1.1 $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (), ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'Throttler.pm', AUTHOR => 'Mike Schilli ') : ()), );