X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0a91c74d5cfbcc4aadf7aa25e49a1bb0a20aa5ca;hb=003ad5453a5033d3a9fc019fa4e0780c990f7b53;hp=3797a6da6e9efab18a5279d753450c07c8e1eeb1;hpb=9039b6dc1b8921dcc94a9cf8d70569159e3c061c;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 3797a6d..0a91c74 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,18 @@ 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( - # 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', + META_ADD => { + 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', + }, + }, ); - -WriteAll;