]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/blobdiff - Makefile.PL
Silence a constness warning in bv_zero()
[perl/modules/Scalar-Vec-Util.git] / Makefile.PL
index e249569330d003dee2be8536d1c8cd6b408bb944..7b55ee5844719860b1074770c01a7b17cd89afe6 100644 (file)
@@ -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,11 @@ 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,
@@ -103,24 +108,24 @@ my %META = (
 );
 
 WriteMakefile(
   NAME             => 'Scalar::Vec::Util',
   AUTHOR           => 'Vincent Pit <perl@profvince.com>',
   LICENSE          => 'perl',
   VERSION_FROM     => 'lib/Scalar/Vec/Util.pm',
   ABSTRACT_FROM    => 'lib/Scalar/Vec/Util.pm',
   PL_FILES         => {},
   C                => \@C,
   @DEFINES,
   PREREQ_PM        => \%PREREQ_PM,
   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 <perl@profvince.com>',
+ 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;
@@ -129,7 +134,7 @@ package MY;
 
 sub postamble {
  my $cv = join ' -coverage ', 'cover',
-                            qw/statement branch condition path subroutine time/;
+                            qw<statement branch condition path subroutine time>;
  <<POSTAMBLE;
 cover test_cover:
        $cv -test