X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f45c791a717ea9e7ac9b99ee92378241ea12a8a3;hb=dolmen%2Fskip-pod-files;hp=50d1c5c1aa89ea3431e6a217b72d9822b6ba452a;hpb=48af19392722b81e946c81bfaa558c1300a13c6e;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 50d1c5c..f45c791 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1 +1,35 @@ -use inc::Distar; +use strict; +use warnings FATAL => 'all'; +use ExtUtils::MakeMaker; + +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + +WriteMakefile( + NAME => 'App::FatPacker', + VERSION_FROM => 'lib/App/FatPacker.pm', + + EXE_FILES => [ + 'bin/fatpack', + ], + + META_MERGE => { + 'meta-spec' => { version => '2' }, + dynamic_config => 0, + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-App-FatPacker-Metadata@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker', + }, + }, + requires => { + # B::perlstring was added in B 1.01 (perl 5.8.0) + perl => '5.008000', + }, + }, +);