]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/commitdiff
Build the $name from $dist
authorVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:45:47 +0000 (10:45 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:46:51 +0000 (10:46 +0200)
Makefile.PL

index 277874532cf58c845dd5fefee341404eb91f445b..33ca035a3bf2132cd7f37b750f720e0ee09d4f0b 100644 (file)
@@ -3,6 +3,8 @@ use ExtUtils::MakeMaker;
 
 my $dist = 're-engine-Plugin';
 
+(my $name = $dist) =~ s{-}{::}g;
+
 my %PREREQ_PM = (
  'XSLoader' => 0,
 );
@@ -26,7 +28,7 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => 're::engine::Plugin',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
     ABSTRACT_FROM    => 'Plugin.pod',