forked from davorg-cpan/xml-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
54 lines (50 loc) · 2.23 KB
/
Copy pathBuild.PL
File metadata and controls
54 lines (50 loc) · 2.23 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
44
45
46
47
48
49
50
51
52
use Module::Build;
my $build = Module::Build
->new( module_name => "XML::Feed",
dist_abstract => "XML Syndication Feed Support",
dist_author => 'Six Apart',
license => 'perl',
script_files => [ ],
requires => {
'Class::ErrorHandler' => 0,
'DateTime' => 0,
'DateTime::Format::Mail' => 0,
'DateTime::Format::W3CDTF' => 0,
'Feed::Find' => 0,
'HTML::Entities' => 0,
'HTML::TokeParser' => 0,
'List::Util' => 0,
'LWP::UserAgent' => 0,
'Module::Pluggable' => 0,
'URI::Fetch' => 0,
'XML::Atom' => '0.38',
'XML::LibXML' => '1.66',
'XML::RSS' => '1.47',
'Test::More' => 0,
'Scalar::Util' => 0,
'perl' => '5.10.0',
},
build_requires => {
'URI' => 0,
},
create_makefile_pl => 'traditional',
meta_merge =>
{
resources =>
{
repository => "https://github.com/davorg/xml-feed",
},
x_contributors => [
'Dave Cross <davecross@cpan.org>',
'Jakob Voss <voss@gbv.de>',
'Tatsuhiko Miyagawa <miyagawa@bulknews.net>',
'Simon Wistow <simon@thegestalt.org>',
'Gabor Szabo <szabgab@cpan.org>',
'Minty Walker <mintywalker@gmail.com>',
'Karen Etheridge <ether@cpan.org>',
'Gerard Ribugent Navarro <ribugent@cpan.org>',
'Matthew D. Miller <matthew.miller@okbu.edu>',
],
},
);
$build->create_build_script;