-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
25 lines (24 loc) · 809 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
use Module::Build;
my $build = Module::Build->new(
module_name => 'Encode::ZapCP1252',
license => 'perl',
create_makefile_pl => 'traditional',
requires => { 'perl' => 5.006_002 },
configure_requires => { 'Module::Build' => '0.36' },
recommends => {
'Test::Pod' => '1.41',
'Encode' => 0,
},
build_requires => {
'Test::More' => '0.17',
'Module::Build' => '0.36',
},
meta_merge => {
resources => {
homepage => 'https://search.cpan.org/dist/Encode-ZapCP1252/',
bugtracker => 'https://github.com/theory/encode-zapcp1252/issues/',
repository => 'https://github.com/theory/encode-zapcp1252',
}
},
);
$build->create_build_script;