-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
25 lines (24 loc) · 820 Bytes
/
Build.PL
File metadata and controls
25 lines (24 loc) · 820 Bytes
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
use Module::Build;
my $build = Module::Build->new(
module_name => 'Text::Diff::HTML',
license => 'perl',
create_makefile_pl => 'traditional',
configure_requires => { 'Module::Build' => '0.2701' },
recommends => { 'Test::Pod' => '1.41' },
build_requires => {
'Test::More' => '0.17',
'Module::Build' => '0.2701',
},
requires => {
Text::Diff => '0.11',
HTML::Entities => '0',
},
meta_merge => {
resources => {
homepage => 'https://metacpan.org/release/Text-Diff-HTML',
bugtracker => 'http://github.com/ThePerlShop/text-diff-html/issues/',
repository => 'http://github.com/ThePerlShop/text-diff-html/',
}
},
);
$build->create_build_script;