diff options
Diffstat (limited to 'gnu/usr.bin/perl/dist/Attribute-Handlers/Makefile.PL')
-rw-r--r-- | gnu/usr.bin/perl/dist/Attribute-Handlers/Makefile.PL | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/dist/Attribute-Handlers/Makefile.PL b/gnu/usr.bin/perl/dist/Attribute-Handlers/Makefile.PL new file mode 100644 index 00000000000..3c99637d035 --- /dev/null +++ b/gnu/usr.bin/perl/dist/Attribute-Handlers/Makefile.PL @@ -0,0 +1,24 @@ +use 5.006; +use strict; +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 'Attribute::Handlers', + VERSION_FROM => 'lib/Attribute/Handlers.pm', + ABSTRACT_FROM => 'lib/Attribute/Handlers.pm', + INSTALLDIRS => ( $] < 5.011 ? 'perl' : 'site' ), + LICENSE => 'perl_5', + PREREQ_PM => { + 'parent' => 0, + }, + AUTHOR => 'Damian Conway', + META_MERGE => { + resources => { + repository => 'https://github.com/perl/perl5.git', + bugtracker => 'https://github.com/perl/perl5/issues', + MailingList => 'https://lists.perl.org/list/perl5-porters.html', + }, + no_index => { + directory => [ 'demo' ], + }, + }, +); |