X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f0b01bcea8e78030d853014105cce7c209ffb1b3;hb=ether%2Fuse-open;hp=e0a33afa670fc40d20f17c0948d0eee0d79441cc;hpb=22fe73bad5a1dc3ee9efcd43ce5dec4ceb57d458;p=p5sagit%2FSub-Name.git diff --git a/Makefile.PL b/Makefile.PL index e0a33af..f0b01bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,37 +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 ', - - PREREQ_PM => { - 'Exporter' => '0', - 'DynaLoader' => '0', - }, - - 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" -}