-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBuild.PL
61 lines (46 loc) · 1.11 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
59
60
#!/usr/bin/perl
=head1 NAME
Build.PL - Build script generator for C<TAP::Formatter::HTML> module
=head1 SYNOPSIS
perl Build.PL
./Build
./Build test
./Build install
=cut
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new
(
module_name => 'TAP::Formatter::HTML',
dist_version_from => 'lib/TAP/Formatter/HTML.pm',
create_makefile_pl => 'passthrough',
create_readme => 1,
license => 'perl',
requires => {
'perl' => '5.6.0',
'accessors' => '0.02',
'URI' => '1.35',
'Template' => '2.14',
'TAP::Parser' => '3.10',
'File::Temp' => '0.17',
'Test::Harness' => '3.17',
},
build_requires => {
'Test::More' => '0.01',
'Module::Build' => '0.20',
},
meta_merge => {
resources => {
repository => 'https://github.com/spurkis/TAP-Formatter-HTML'
}
},
);
$build->add_build_element("tt2");
$build->add_build_element("css");
$build->add_build_element("js");
$build->create_build_script;
__END__
=head1 AUTHOR
Steve Purkis <[email protected]>
=cut