forked from jettero/mrsh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
34 lines (27 loc) · 819 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
32
33
34
require 5.006001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::MrShell',
VERSION_FROM => 'MrShell.pm',
AUTHOR => 'Paul Miller <[email protected]>',
EXE_FILES => [ 'mrsh' ],
PREREQ_PM => {
'Config::Tiny' => 0,
'POE' => 0,
'Term::ANSIColor' => 0,
'Text::Balanced' => 0,
},
($ExtUtils::MakeMaker::VERSION ge '6.48'?
(MIN_PERL_VERSION => 5.006001,
META_MERGE => {
keywords => ['ssh'],
resources=> {
repository => 'http://github.com/jettero/mrsh',
},
},
LICENSE => 'GPL',
) : ()),
clean => { FILES => 'FILES dist test_file.*' },
);