X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=1c70c6f3bb133412825c521d73efa7d61047fbc6;hb=refs%2Ftags%2Fv1.2.0;hp=39b9b198042fc399c536e14a493fae9ebbc6131f;hpb=4c20de0694d06ff3a5f963d7f51d509319060b50;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index 39b9b198..1c70c6f3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,13 +13,14 @@ my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest)); my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR) my $base = $_; my $mod = $base; + $mod =~ s!/!::!g; $mod =~ s/\.\w+\z//; "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3" -} qw(Git.pm Import.pm WWW.pod); +} qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod); WriteMakefile( NAME => 'PublicInbox', - VERSION => '1.1.0-pre1', + VERSION => '1.2.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'public-inbox server infrastructure', EXE_FILES => \@EXE_FILES,