-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.PL
48 lines (36 loc) · 1.44 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
use lib '.';
use inc::Module::Install 1.08;
name 'Debug-Client';
all_from 'lib/Debug/Client.pm';
requires_from 'lib/Debug/Client.pm';
perl_version '5.010001';
requires 'Carp' => '1.3301';
requires 'Exporter' => '5.70';
requires 'IO::Socket::IP' => '0.29';
requires 'PadWalker' => '1.98';
requires 'Term::ReadLine' => '1.14';
requires 'constant' => '1.27';
requires 'Term::ReadLine' => '1.14';
requires 'Term::ReadLine::Gnu' => '1.24' if !win32;
test_requires 'File::HomeDir' => '1';
test_requires 'File::Temp' => '0.2304';
test_requires 'List::Util' => '1.38';
test_requires 'Test::CheckDeps' => '0.01';
test_requires 'Test::Class' => '0.42';
test_requires 'Test::Deep' => '0.112';
test_requires 'Test::More' => '1.001003';
test_requires 'Test::Requires' => '0.07';
test_requires 'Win32' => '0.49' if win32;
test_requires 'Win32::Process' => '0.16' if win32;
test_requires 'parent' => '0.228';
test_requires 'version' => '0.9908';
recommends 'ExtUtils::MakeMaker' => '6.66';
recommends 'File::Spec::Functions' => '3.4';
recommends 'List::Util' => '1.27';
recommends 'Test::Pod' => '1.48';
recommends 'Test::Pod::Coverage' => '1.08';
homepage 'https://github.com/PadreIDE/Debug-Client';
bugtracker 'https://github.com/PadreIDE/Debug-Client/issues';
repository 'git://github.com/PadreIDE/Debug-Client.git';
no_index 'directory' => qw{ eg t };
WriteAll