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

index 953f57895905918ed8ac3d0e48d3cefdb15e7991..66203b0caa268e5c9626034ef161082da33be086 100644 (file)
@@ -6,6 +6,11 @@ use ExtUtils::MakeMaker;
 
 my $dist = 'with';
 
 
 my $dist = 'with';
 
+(my $name = $dist) =~ s{-}{::}g;
+
+(my $file = $dist) =~ s{-}{/}g;
+$file = "lib/$file.pm";
+
 my %PREREQ_PM = (
  'Carp'                 => 0,
  'Filter::Util::Call'   => 0,
 my %PREREQ_PM = (
  'Carp'                 => 0,
  'Filter::Util::Call'   => 0,
@@ -33,17 +38,17 @@ my %META = (
 );
 
 WriteMakefile(
 );
 
 WriteMakefile(
-    NAME             => 'with',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     LICENSE          => 'perl',
-    VERSION_FROM     => 'lib/with.pm',
-    ABSTRACT_FROM    => 'lib/with.pm',
+    VERSION_FROM     => $file,
+    ABSTRACT_FROM    => $file,
     PL_FILES         => {},
     PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.009004,
     META_MERGE       => \%META,
     dist             => {
     PL_FILES         => {},
     PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.009004,
     META_MERGE       => \%META,
     dist             => {
-        PREOP    => 'pod2text lib/with.pm > $(DISTVNAME)/README',
+        PREOP    => "pod2text $file > \$(DISTVNAME)/README",
         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
     clean            => {
         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
     },
     clean            => {