X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=746a2438ef651581baee5f289cd952a91d426973;hb=fatpack-file-param-moves-shebang;hp=4277a812042934f938e6c7ab8cf905439f96e6c6;hpb=25ed65974d20941225a9b6d50ca0fa00788dc73a;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 4277a81..746a243 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,25 @@ use strict; use warnings FATAL => 'all'; -use inc::Module::Install 0.93; +use ExtUtils::MakeMaker; -all_from('lib/App/FatPacker.pm'); +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; -install_script('bin/fatpack'); +WriteMakefile( + NAME => 'App::FatPacker', + VERSION_FROM => 'lib/App/FatPacker.pm', -resources( - repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git", -); + EXE_FILES => [ + 'bin/fatpack', + ], -WriteAll; + 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.008000', + }, + }, +);