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

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