-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
28 lines (26 loc) · 907 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
28
use 5.006;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
meta_merge => {
resources => {
repository => 'https://github.com/iafan/XML-Parser-Style-IxTree',
},
},
module_name => 'XML::Parser::Style::IxTree',
license => 'perl',
dist_author => 'Igor Afanasyev <[email protected]>',
dist_version_from => 'lib/XML/Parser/Style/IxTree.pm',
release_status => 'stable',
configure_requires => {
'Module::Build' => 0,
},
requires => {
'Tie::IxHash' => '1.22',
'XML::Parser::Style::Tree' => 0,
},
add_to_cleanup => ['XML-Parser-*', 'Makefile.PL', 'MYMETA.*', 'META.*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();