X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=Makefile.PL;h=f3c9a27acea351d2d20320e2ec004a6490f9ddec;hp=c5e8f755bb12d0c7af08484ef40b31696007267d;hb=1627df4e8bb3ce08bca9d27fd58a4af1e59acfc5;hpb=beaee5a1ec2d8d70222163de995aa99adff0f052 diff --git a/Makefile.PL b/Makefile.PL index c5e8f75..f3c9a27 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,13 +5,19 @@ use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; WriteMakefile( - NAME => 'Object-Remote', + NAME => 'Object::Remote', VERSION_FROM => 'lib/Object/Remote.pm', PREREQ_PM => { Moo => 0, 'Module::Runtime' => 0, 'JSON::PP' => 0, 'CPS::Future' => 0, + 'Class::C3' => 0, # required to fatpack Moo + 'String::ShellQuote' => 0, # required for ssh argument manipulation }, - EXE_FILES => [ 'bin/object-remote-node' ], + EXE_FILES => [ + 'bin/object-remote-node', + 'bin/object-remote-slave', + 'bin/remoterepl', + ], );