X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=7b55ee5844719860b1074770c01a7b17cd89afe6;hb=7534095ac7f4df7767444efaea60afc7f3f70360;hp=69b1bfeba7c9b3ef662c42f07d6c2b2037d4a9d0;hpb=efead5be174cb5cc84bc5a5517aa9a7ec3acee48;p=perl%2Fmodules%2FScalar-Vec-Util.git diff --git a/Makefile.PL b/Makefile.PL index 69b1bfe..7b55ee5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,7 @@ use ExtUtils::MakeMaker; BEGIN { eval { require Config }; die 'OS unsupported' if $@; - Config->import(qw/%Config/); + Config->import(qw<%Config>); eval { require File::Spec }; die 'OS unsupported' if $@; } @@ -74,6 +74,18 @@ if (not is_little_endian()) { my $dist = 'Scalar-Vec-Util'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + +my %PREREQ_PM = ( + 'Exporter' => 0, + 'Carp' => 0, + 'XSLoader' => 0, + 'base' => 0, +); + my %META = ( configure_requires => { 'Config' => 0, @@ -84,6 +96,7 @@ my %META = ( 'Config' => 0, 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, + %PREREQ_PM, }, dynamic_config => 1, resources => { @@ -95,29 +108,24 @@ my %META = ( ); WriteMakefile( - NAME => 'Scalar::Vec::Util', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Scalar/Vec/Util.pm', - ABSTRACT_FROM => 'lib/Scalar/Vec/Util.pm', - PL_FILES => {}, - C => \@C, - @DEFINES, - PREREQ_PM => { - 'Exporter' => 0, - 'Carp' => 0, - 'XSLoader' => 0, - 'base' => 0, - }, - MIN_PERL_VERSION => 5.006, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text lib/Scalar/Vec/Util.pm > $(DISTVNAME)/README', - COMPRESS => 'gzip -9f', SUFFIX => 'gz' - }, - clean => { - FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" - }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + C => \@C, + @DEFINES, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => 5.006, + META_MERGE => \%META, + dist => { + PREOP => "pod2text $file > \$(DISTVNAME)/README", + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + }, ); 1; @@ -126,7 +134,7 @@ package MY; sub postamble { my $cv = join ' -coverage ', 'cover', - qw/statement branch condition path subroutine time/; + qw; <