X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=6b2980c145140f61b38d1909adb7bb24dd99a874;hb=3c29415b9a630f4d6ac50c43c450736c86a61436;hp=f63558a1de25b31c76d895af40dd734493f879f7;hpb=453d9fe68279ec9a803e111c80bf3324be34a369;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index f63558a..6b2980c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,34 @@ 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'; -requires 'File::Path' => 2.07; # required for make_path/remove_tree +WriteMakefile( + NAME => 'App::FatPacker', + VERSION_FROM => 'lib/App/FatPacker.pm', -install_script('bin/fatpack'); + EXE_FILES => [ + 'bin/fatpack', + ], -WriteAll; + META_MERGE => { + 'meta-spec' => { version => '2' }, + 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 5.8.0 + perl => '5.008000', + }, + }, +);