my $dist = 'Test-Valgrind';
+(my $name = $dist) =~ s{-}{::}g;
+
+(my $file = $dist) =~ s{-}{/}g;
+$file = "lib/$file.pm";
+
my %PREREQ_PM = (
'Carp' => 0,
'Digest::MD5' => 0,
);
WriteMakefile(
- NAME => 'Test::Valgrind',
+ NAME => $name,
AUTHOR => 'Vincent Pit <perl@profvince.com>',
LICENSE => 'perl',
- VERSION_FROM => 'lib/Test/Valgrind.pm',
- ABSTRACT_FROM => 'lib/Test/Valgrind.pm',
+ VERSION_FROM => $file,
+ ABSTRACT_FROM => $file,
OPTIMIZE => '-g',
C => \@C,
PREREQ_PM => \%PREREQ_PM,
MIN_PERL_VERSION => 5.006,
META_MERGE => \%META,
dist => {
- PREOP => 'pod2text lib/Test/Valgrind.pm > $(DISTVNAME)/README',
+ PREOP => "pod2text $file > \$(DISTVNAME)/README",
COMPRESS => 'gzip -9f', SUFFIX => 'gz',
},
clean => {