forked from LibreCat/Catmandu-MARC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
32 lines (29 loc) · 770 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
29
30
31
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Catmandu::MARC',
license => 'perl',
dist_author => [
'Patrick Hochstenbach <patrick.hochstenbach@ugent.be>',
'Nicolas Steenlant <nicolas.steenlant@ugent.be>'
],
dist_version_from => 'lib/Catmandu/MARC.pm',
build_requires => {
'Test::Exception' => 0,
'Test::More' => 0,
'XML::XPath' => 0,
},
requires => {
'perl' => '5.10.1',
'Catmandu' => '0.08',
'MARC::File::XML' => '0.93',
'MARC::Record' => '2.0.3',
'Moo' => '1.0',
},
add_to_cleanup => [qw(
Catmandu-MARC-*
)],
create_makefile_pl => 'traditional',
);
$builder->create_build_script;