-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
36 lines (35 loc) · 998 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
32
33
34
35
36
use 5.010000;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Biblio::BF2MARC',
license => 'unrestricted',
dist_author => q{Wayne Schneider <wayne@indexdata.com>},
dist_version_from => 'lib/Biblio/BF2MARC.pm',
release_status => 'unstable',
configure_requires => {
'Module::Build' => '0',
},
build_requires => {
'Test::More' => '0',
'XML::LibXSLT' => '1',
'XML::LibXML' => '2',
'Net::Ping' => '0'
},
requires => {
'RDF::Trine' => '1.014',
'RDF::Query' => '2.9',
'XML::LibXSLT' => '1.85',
'XML::LibXML' => '2',
'File::Share' => '0',
'List::Util' => '0'
},
recommends => {
'MARC::Record' => '2',
'MARC::File::XML' => '1'
},
share_dir => 'share',
add_to_cleanup => [ 'Biblio-BF2MARC-*', 'share/bibframe2marc.xsl' ]
);
$builder->create_build_script();