X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=440dc378fd5fac9be09ff7d3719b824b8c82454b;hb=31f779e8f565f175cd634ea5d5e7bd0943fda2cb;hp=3797a6da6e9efab18a5279d753450c07c8e1eeb1;hpb=d04938c546a686e5330b76e2874d4555d9bfcc4e;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 3797a6d..440dc37 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,15 +1,22 @@ 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', -); + EXE_FILES => [ + 'bin/fatpack', + ], -WriteAll; + 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', + }, + }, +);