-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBuild.PL
More file actions
24 lines (22 loc) · 766 Bytes
/
Build.PL
File metadata and controls
24 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use Module::Build;
Module::Build
->new(
module_name => "HTML::FormatText::WithLinks",
license => 'perl',
requires => {
'HTML::FormatText' => 2,
'HTML::TreeBuilder' => 0,
'URI::WithBase' => 0,
},
build_requires => {
'Test::More' => 0,
},
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'https://github.com/struan/html-formattext-withlinks'
}
},
)
->create_build_script;