-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
31 lines (30 loc) · 1.01 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
use 5.008;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'HTTP2::Draft',
AUTHOR => q{Stephen Ludin <[email protected]>},
VERSION_FROM => 'lib/HTTP2/Draft.pm',
ABSTRACT_FROM => 'lib/HTTP2/Draft.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.008,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
"HTTP::Request" => 0,
"HTTP::Response" => 0,
"IO::Async::Loop" => 0,
"IO::Async::SSL" => 0,
"IO::Async::Timer::Countdown" => 0,
"Log::Log4perl" => 0,
"Readonly" => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'HTTP2-Draft-*' },
);