-
Notifications
You must be signed in to change notification settings - Fork 7
/
Build.PL
36 lines (32 loc) · 928 Bytes
/
Build.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
# $Id$
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
meta_merge => {
resources => {
repository => 'http://github.com/aufflick/p5-http-server-brick',
},
},
module_name => 'HTTP::Server::Brick',
license => 'perl',
dist_author => 'Mark Aufflick <[email protected]>',
dist_version => '0.1.6',
dist_abstract => 'Simple pure perl http/https server for prototyping "in the style of" Ruby\'s WEBrick',
requires => {
'Module::Build' => 0,
'Test::More' => 0,
'version' => 0,
'HTTP::Daemon' => 0,
'HTTP::Status' => 0,
'LWP::MediaTypes' => 0,
'LWP' => 0,
'LWP::UserAgent' => 0,
'IO::Handle' => 0,
},
recommends => {
'HTTP::Daemon::SSL' => '1.02',
},
add_to_cleanup => [ 'HTTP-Server-Brick-*' ],
);
$builder->create_build_script();