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

use Module::Build;
my $build = Module::Build->new(
module_name => 'App::GitFeed',
license => 'gpl',
requires => {
'perl' => '5.10.0',
'XML::Atom::SimpleFeed' => '0.8',
'HTML::Entities' => 0,
'Getopt::Long' => 0,
'IPC::System::Simple' => '0.11',
}
);
$build->create_build_script;