]> Sergey Matveev's repositories - public-inbox.git/blob - Makefile.PL
reject messages if ORIGINAL_RECIPIENT is not specified
[public-inbox.git] / Makefile.PL
1 #!/usr/bin/perl -w
2 # Copyright (C) 2013, Eric Wong <normalperson@yhbt.net> and all contributors
3 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
4 use strict;
5 use ExtUtils::MakeMaker;
6 WriteMakefile(
7         NAME => 'public-inbox',
8         VERSION => '0.0.0',
9         AUTHOR => 'Eric Wong <normalperson@yhbt.net>',
10         ABSTRACT => 'public-inbox.org infrastructure',
11         EXE_FILES => [qw/public-inbox-mda/],
12         PREREQ_PM => {
13                 # note: we use ssoma(1) and spamc(1),
14                 # NOT the Perl modules
15                 'Email::MIME' => 0,
16                 'Email::MIME::ContentType' => 0,
17                 'Email::Filter' => 0,
18                 'Email::Address' => 0,
19         },
20 );
21
22 sub MY::postamble {
23   <<'EOF';
24 RSYNC_DEST = public-inbox.org:/srv/public-inbox/
25 docs = README COPYING INSTALL $(shell git ls-files Documentation/ '*.txt')
26 gz_docs = $(addsuffix .gz, $(docs))
27 %.gz: %
28         gzip -9 --rsyncable < $< > $@+
29         touch -r $< $@+
30         mv $@+ $@
31
32 gz-docs: $(gz_docs)
33 rsync-docs:
34         git set-file-times $(docs)
35         $(MAKE) gz-docs
36         rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST)
37
38 EOF
39 }