A script to generate Atom feeds for git commit logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
340 B

  1. use Module::Build;
  2. my $build = Module::Build->new(
  3. module_name => 'App::GitFeed',
  4. license => 'gpl',
  5. requires => {
  6. 'perl' => '5.10.0',
  7. 'XML::Atom::SimpleFeed' => '0.8',
  8. 'HTML::Entities' => 0,
  9. 'Getopt::Long' => 0,
  10. 'IPC::System::Simple' => '0.11',
  11. }
  12. );
  13. $build->create_build_script;