-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBuild.PL
More file actions
43 lines (40 loc) · 1.2 KB
/
Copy pathBuild.PL
File metadata and controls
43 lines (40 loc) · 1.2 KB
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
use strict;
use warnings;
use Module::Build;
Module::Build->VERSION('0.4004');
my $builder = Module::Build->new(
module_name => 'MsOffice::Word::Template',
license => 'artistic_2',
dist_author => q{DAMI <dami@cpan.org>},
dist_version_from => 'lib/MsOffice/Word/Template.pm',
release_status => 'stable',
configure_requires => {
'Module::Build' => '0.4004',
},
test_requires => {
'Test::More' => '0',
},
requires => {
perl => '5.24.0',
'Carp' => undef,
'Moose' => undef,
'MooseX::StrictConstructor' => undef,
'MooseX::AbstractMethod' => undef,
'MsOffice::Word::Surgeon' => '2.06',
'Template::AutoFilter' => undef,
'namespace::clean' => undef,
},
recommends => {
'Barcode::Code128' => undef,
'Image::PNG::QRCode' => undef,
'GD' => undef,
},
add_to_cleanup => [ 'MsOffice-Word-Template-*' ],
meta_merge => {
resources => {
repository => 'https://github.com/damil/MsOffice-Word-Template',
}
},
);
$builder->add_build_element('docx');
$builder->create_build_script();