1use 5.006; 2use strict; 3use ExtUtils::MakeMaker; 4WriteMakefile( 5 NAME => 'Attribute::Handlers', 6 VERSION_FROM => 'lib/Attribute/Handlers.pm', 7 ABSTRACT_FROM => 'lib/Attribute/Handlers.pm', 8 INSTALLDIRS => ( $] < 5.011 ? 'perl' : 'site' ), 9 LICENSE => 'perl_5', 10 PREREQ_PM => { 11 'parent' => 0, 12 }, 13 AUTHOR => 'Damian Conway', 14 META_MERGE => { 15 resources => { 16 repository => 'https://github.com/perl/perl5.git', 17 bugtracker => 'https://github.com/perl/perl5/issues', 18 MailingList => 'https://lists.perl.org/list/perl5-porters.html', 19 }, 20 no_index => { 21 directory => [ 'demo' ], 22 }, 23 }, 24); 25