5 use ExtUtils::MakeMaker;
9 'ExtUtils::MakeMaker' => 0,
10 'File::Spec::Functions' => 0,
16 my $tometa = ' >> $(DISTVNAME)/META.yml;';
17 my $build_req = 'echo "build_requires:" ' . $tometa;
18 foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) {
19 my $ver = $BUILD_REQUIRES->{$mod};
20 $build_req .= sprintf 'echo " %-30s %s" %s', "$mod:", $ver, $tometa;
27 AUTHOR => 'Vincent Pit <perl@profvince.com>',
29 VERSION_FROM => 'lib/App/Rgit.pm',
30 ABSTRACT => 'Recursively execute a command on all the git repositories in a directory tree.',
32 EXE_FILES => [ 'bin/rgit' ],
38 'File::Spec::Functions' => 0,
43 PREOP => 'pod2text bin/rgit > $(DISTVNAME)/README; '
45 COMPRESS => 'gzip -9f', SUFFIX => 'gz'
47 clean => { FILES => 'rgit-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' }