use strict; use warnings; use ExtUtils::MakeMaker; # Normalize version strings like 6.30_02 to 6.3002, # so that we can do numerical comparisons on it. my $eumm_version = $ExtUtils::MakeMaker::VERSION; $eumm_version =~ s/_//; WriteMakefile( NAME => 'App::REST::LazyShoppingList', AUTHOR => q{YOUR NAME }, VERSION_FROM => 'lib/App/REST/LazyShoppingList.pm lib/App/REST/LazyShoppingList.pm', ABSTRACT => 'YOUR APPLICATION ABSTRACT', ($eumm_version >= 6.3001 ? ('LICENSE'=> 'perl') : ()), PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, 'YAML' => 0, 'Dancer2' => 0.301004, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'App-REST-LazyShoppingList-*' }, );