-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile.PL
More file actions
37 lines (36 loc) · 1.07 KB
/
Makefile.PL
File metadata and controls
37 lines (36 loc) · 1.07 KB
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
use 5.006000;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'proxyhunter',
LICENSE => 'perl',
VERSION_FROM => 'lib/App/ProxyHunter.pm',
PREREQ_PM => {
Coro:: => 2.5,
Coro::PatchSet:: => 0.13,
LWP::UserAgent:: => 6.02,
LWP::Protocol::https:: => 6.02,
LWP::Protocol::connect:: => 6.09,
LWP::Protocol::socks:: => 1.7,
Net::Proxy::Type:: => 0.09,
Getopt::Long:: => 2.39,
Time::HiRes:: => 0,
DateTime:: => 0.50,
List::Util:: => 1.3,
URI:: => 1.36,
Mo:: => 0.10,
Parse::JCONF:: => 0.02,
Teng:: => 0.19,
List::MoreUtils:: => 0.09,
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.52,
},
EXE_FILES => [ 'bin/proxyhunter' ],
META_MERGE => {
resources => {repository => 'https://github.com/olegwtf/proxyhunter'},
},
($] >= 5.005 ?
(ABSTRACT_FROM => 'bin/proxyhunter',
AUTHOR => 'Oleg G <oleg@cpan.org>') : ()),
);