-
Notifications
You must be signed in to change notification settings - Fork 3
/
Build.PL
27 lines (26 loc) · 881 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
use Module::Build;
my $build = Module::Build->new(
module_name => 'Text::WordDiff',
license => 'perl',
create_makefile_pl => 'traditional',
configure_requires => { 'Module::Build' => '0.2701' },
recommends => { 'Test::Pod' => '1.41' },
requires => {
Algorithm::Diff => '1.19',
Term::ANSIColor => '0',
HTML::Entities => '0',
},
build_requires => {
'Module::Build' => '0.2701',
'Test::More' => '0.17',
'File::Spec' => '0',
},
meta_merge => {
resources => {
homepage => 'https://metacpan.org/release/Text-WordDiff',
bugtracker => 'https://github.com/ThePerlShop/text-worddiff/issues',
repository => 'https://github.com/ThePerlShop/text-worddiff',
}
},
);
$build->create_build_script;