forked from evdb/HTTP-Async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
33 lines (31 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
32
33
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'HTTP::Async',
'VERSION_FROM' => 'lib/HTTP/Async.pm',
LICENSE => 'perl',
'PREREQ_PM' => {
'Carp' => 0,
'Data::Dumper' => 0,
'HTTP::Request' => 0,
'HTTP::Response' => 0,
'HTTP::Server::Simple::CGI' => 0,
'HTTP::Status' => 0,
'IO::Select' => 0,
'LWP::UserAgent' => 0,
'Net::HTTP' => 0,
'Net::HTTP::NB' => 0,
'Net::HTTPS::NB' => 0.13,
'Test::HTTP::Server::Simple' => 0,
'Test::More' => 0,
'Time::HiRes' => 0,
'URI' => 0,
'URI::Escape' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/evdb/HTTP-Async',
},
},
);