]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Build the $name and the main $file from $dist
authorVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:32:11 +0000 (10:32 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:32:11 +0000 (10:32 +0200)
Makefile.PL

index e249569330d003dee2be8536d1c8cd6b408bb944..e8daeef64564902d9c60df7ae21b1de9f99d737a 100644 (file)
@@ -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,11 +108,11 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => 'Scalar::Vec::Util',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
-    VERSION_FROM     => 'lib/Scalar/Vec/Util.pm',
-    ABSTRACT_FROM    => 'lib/Scalar/Vec/Util.pm',
+    VERSION_FROM     => $file,
+    ABSTRACT_FROM    => $file,
     PL_FILES         => {},
     C                => \@C,
     @DEFINES,
@@ -115,7 +120,7 @@ WriteMakefile(
     MIN_PERL_VERSION => 5.006,
     META_MERGE       => \%META,
     dist             => {
-        PREOP    => 'pod2text lib/Scalar/Vec/Util.pm > $(DISTVNAME)/README',
+        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
     clean            => {