X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f63558a1de25b31c76d895af40dd734493f879f7;hb=cc5db92a0bedaa07593dc91ef75babb9e1c2fb86;hp=50d1c5c1aa89ea3431e6a217b72d9822b6ba452a;hpb=48af19392722b81e946c81bfaa558c1300a13c6e;p=p5sagit%2FApp-FatPacker.git diff --git a/Makefile.PL b/Makefile.PL index 50d1c5c..f63558a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1 +1,11 @@ -use inc::Distar; +use strict; +use warnings FATAL => 'all'; +use inc::Module::Install 0.93; + +all_from('lib/App/FatPacker.pm'); + +requires 'File::Path' => 2.07; # required for make_path/remove_tree + +install_script('bin/fatpack'); + +WriteAll;