]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
mbox_reader: do not blindly pass --rsyncable to gzip
[public-inbox.git] / Makefile.PL
index 348a343d7fa7a22dbc364d63976947035879b554..8c8c0235f35bc38320f5dd0478bfa9439afa08e9 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2013-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use ExtUtils::MakeMaker;
@@ -57,7 +57,7 @@ $v->{-m5} = [ qw(public-inbox-config public-inbox-v1-format
                public-inbox-v2-format public-inbox-extindex-format
                lei-mail-formats lei-store-format
                ) ];
-$v->{-m7} = [ qw(lei-overview lei-security
+$v->{-m7} = [ qw(lei-mail-sync-overview lei-overview lei-security
                public-inbox-overview public-inbox-tuning
                public-inbox-glossary) ];
 $v->{-m8} = [ qw(public-inbox-daemon lei-daemon) ];
@@ -190,6 +190,16 @@ WriteMakefile(
                FILES => 't/home*/setup* t/home*/t* t/home*/.public-inbox '.
                        't/data-gen/*'
        },
+       PM => {
+               map {
+                       s[^lib/][]s;
+                       +('lib/' . $_ => '$(INST_LIB)/' . $_);
+               } grep {
+                       # Will include *.pod and an *.h file, but so
+                       # would ExtUtils::MakeMaker.
+                       m[^lib/];
+               } @manifest
+       },
 );
 
 sub MY::postamble {