Add a meta_merge link to the respository.
[catagits/XML-Feed.git] / Build.PL
CommitLineData
f3763577 1# $Id$
bfcc8cf0 2use Module::Build;
3
4my $build = Module::Build
5 ->new( module_name => "XML::Feed",
6 dist_abstract => "XML Syndication Feed Support",
7 license => 'perl',
8 script_files => [ ],
9 requires => {
10 'Class::ErrorHandler' => 0,
11 'DateTime' => 0,
12 'DateTime::Format::Mail' => 0,
13 'DateTime::Format::W3CDTF' => 0,
14 'Feed::Find' => 0,
6f2c8995 15 'HTML::Entities' => 0,
bfcc8cf0 16 'HTML::TokeParser' => 0,
17 'List::Util' => 0,
18 'LWP::UserAgent' => 0,
9b6bc912 19 'Module::Pluggable' => 0,
bfcc8cf0 20 'URI::Fetch' => 0,
4e9cef3c 21 'XML::Atom' => '0.38',
a0cca2a4 22 'XML::LibXML' => '1.66',
934ef9a4 23 'XML::RSS' => '1.47',
bfcc8cf0 24 'Test::More' => 0,
25 },
26 create_makefile_pl => 'traditional',
b7913acf 27 meta_merge =>
28 {
29 resources =>
30 {
31 repository => "https://github.com/davorg/xml-feed",
32 },
33 },
bfcc8cf0 34 );
35
36$build->create_build_script;
37
0d5e38d1 38