forked from agentzh/sshbatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
32 lines (24 loc) · 849 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use strict;
use lib '.';
use inc::Module::Install;
name ('SSH-Batch');
license ('BSD');
author ('Agent Zhang <[email protected]>');
perl_version ('5.006001');
all_from ('lib/SSH/Batch.pm');
requires ('Set::Scalar' => '1.23');
requires ('File::HomeDir' => '0.86');
requires ('Net::OpenSSH' => '0.34');
requires ('File::Temp');
requires ('Term::ReadKey' => '2.30');
requires ('IO::Pty');
build_requires ('IPC::Run3');
#build_requires ('Test::Base' => '0.54');
use_test_base;
no_index( directory => qw< t inc doc share demo > );
install_script ('bin/fornodes');
install_script ('bin/atnodes');
install_script ('bin/tonodes');
install_script ('bin/key2nodes');
auto_install();
WriteAll();