-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
executable file
·32 lines (29 loc) · 1023 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'CGI::Application::Plugin::AnyTemplate',
license => 'perl',
dist_author => 'Michael Graham <[email protected]>',
dist_version_from => 'lib/CGI/Application/Plugin/AnyTemplate.pm',
requires => {
'Test::More' => 0,
'Clone' => 0,
'Scalar::Util' => 0,
'CGI::Application' => 0, # We know that CGI::App requires HTML::Template
# so we will have at least one templating system
# installed
'CGI::Application::Plugin::Forward' => 0,
},
meta_add => {
no_index => {
directory => [ qw/
misc
t
/]
}
},
add_to_cleanup => [ 'CGI-Application-Plugin-AnyTemplate-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();