-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
58 lines (54 loc) · 1.83 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use strict;
use warnings;
use Module::Build::SysPath;
use 5.010;
my $builder = Module::Build::SysPath->new(
module_name => 'meon-Web2',
license => 'perl',
dist_author => 'Jozef Kutej <[email protected]>',
dist_version_from => 'lib/meon/Web2.pm',
configure_requires => {
'Module::Build::SysPath' => 0.13,
'Module::Build' => '0.3607',
},
build_requires => {
'Module::Build::SysPath' => 0.13,
'Test::Most' => 0,
'Test::WWW::Mechanize' => 0,
'Moose' => 0,
'namespace::autoclean' => 0,
'Plack::Test::Server' => 0,
'Plack::Builder' => 0,
},
requires => {
'perl' => '5.010',
'Try::Tiny' => 0,
'Plack::Request' => 0,
'Plack::Middleware::ContentLength' => 0,
'Twiggy' => 0,
'Carp' => 0,
'JSON::XS' => 0,
'Config::INI::Reader' => 0,
'Log::Log4perl' => 0,
'HTTP::Exception' => 0,
'Path::Class' => 0,
'Plack::MIME' => 0,
'AnyEvent::IO' => 0,
'Run::Env' => 0,
'File::is' => 0,
'XML::LibXML' => 0,
'XML::LibXSLT' => 0,
},
script_files => [qw(
bin/meon-web2.psgi
)
],
conffiles => [qw(
etc/meon/web2-config.ini
etc/meon/web2-log4perl.conf
)
],
add_to_cleanup => ['meon-Web2-*'],
create_readme => 1,
);
$builder->create_build_script();