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

index 3d526339fd455dc2d42bf77f5fabfeeed0d76593..2570329a576207ed670aa0ff1da6e2b04f0ba745 100644 (file)
@@ -54,6 +54,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
 
 my $dist = 'Variable-Magic';
 
+(my $name = $dist) =~ s{-}{::}g;
+
+(my $file = $dist) =~ s{-}{/}g;
+$file = "lib/$file.pm";
+
 my %PREREQ_PM = (
  'Carp'     => 0,
  'Exporter' => 0,
@@ -83,18 +88,18 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => 'Variable::Magic',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
-    VERSION_FROM     => 'lib/Variable/Magic.pm',
-    ABSTRACT_FROM    => 'lib/Variable/Magic.pm',
+    VERSION_FROM     => $file,
+    ABSTRACT_FROM    => $file,
     PL_FILES         => {},
     @DEFINES,
     PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.008,
     META_MERGE       => \%META,
     dist             => {
-        PREOP    => 'pod2text lib/Variable/Magic.pm > $(DISTVNAME)/README',
+        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
     clean            => {