X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSub-Name.git;a=blobdiff_plain;f=Makefile.PL;h=f0b01bcea8e78030d853014105cce7c209ffb1b3;hp=a53161d70ad3b06f552d674ae06d64ef6aeff5bb;hb=HEAD;hpb=68104426e506b6b95ae78d736a2eaa36bcb8f4a8 diff --git a/Makefile.PL b/Makefile.PL index a53161d..f0b01bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,32 +1,12 @@ -use 5.006; -use ExtUtils::MakeMaker; +use strict; +use warnings; +use lib 'inc'; +use ExtUtils::MakeMaker::Dist::Zilla::Develop; WriteMakefile( - NAME => 'Sub::Name', - VERSION_FROM => 'lib/Sub/Name.pm', - ABSTRACT_FROM => 'lib/Sub/Name.pm', - AUTHOR => 'Matthijs van Duin ', - - MIN_PERL_VERSION => '5.006', - META_MERGE => { - 'meta-spec' => { version => 2 }, - dynamic_config => 0, - resources => { - repository => { - url => 'https://github.com/karenetheridge/Sub-Name.git', - web => 'https://github.com/karenetheridge/Sub-Name', - type => 'git', - }, - bugtracker => { - mailto => 'bug-Sub-Name@rt.cpan.org', - web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name', - }, - }, - }, + NAME => 'Sub::Name', + VERSION_FROM => 'lib/Sub/Name.pm', + INSTALLMAN1DIR => 'none', + INSTALLMAN3DIR => 'none', + NORECURS => 1, ); - -package MY; -sub depend { " -README : \$(VERSION_FROM) - pod2text \$(VERSION_FROM) > README" -}