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

index aaf42958f98d6901b9fc407e4884d10ab568a691..8a0b419a9963c7c79a32fbd2813006fc66818c08 100644 (file)
@@ -6,6 +6,11 @@ use ExtUtils::MakeMaker;
 
 my $dist = 'Sub-Nary';
 
+(my $name = $dist) =~ s{-}{::}g;
+
+(my $file = $dist) =~ s{-}{/}g;
+$file = "lib/$file.pm";
+
 my %PREREQ_PM = (
  'B'        => 0,
  'Carp'     => 0,
@@ -31,17 +36,17 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => 'Sub::Nary',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
-    VERSION_FROM     => 'lib/Sub/Nary.pm',
-    ABSTRACT_FROM    => 'lib/Sub/Nary.pm',
+    VERSION_FROM     => $file,
+    ABSTRACT_FROM    => $file,
     PL_FILES         => {},
     PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.008001,
     META_MERGE       => \%META,
     dist             => {
-        PREOP    => 'pod2text lib/Sub/Nary.pm > $(DISTVNAME)/README',
+        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
     clean            => {