X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=a40b13f1cdfb37932e1e04b293b9997d398dd806;hb=f85868a26925384c05d307c8f3d4edbe16c86083;hp=50d1c5c1aa89ea3431e6a217b72d9822b6ba452a;hpb=48af19392722b81e946c81bfaa558c1300a13c6e;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 50d1c5c..a40b13f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1 +1,25 @@ -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 => { + resources => { + # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git + repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git", + homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git', + }, + requires => { + perl => 5.6.0, + }, + }, +);