Merge branch 'master' of github.com:davorg/xml-feed
[catagits/XML-Feed.git] / Build.PL
index 9d1877e..004c49b 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -1,3 +1,38 @@
-# $Id: Build.PL 918 2004-05-29 17:29:55Z btrott $
+# $Id$
+use Module::Build;
+
+my $build = Module::Build
+  ->new( module_name   => "XML::Feed",
+         dist_abstract => "XML Syndication Feed Support", 
+         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,
+                        },
+         create_makefile_pl => 'traditional',
+         meta_merge =>
+         {
+             resources =>
+             {
+                 repository => "https://github.com/davorg/xml-feed",
+             },
+         },
+       );
+
+$build->create_build_script;
+
 
-require 'Makefile.PL';