]> Sergey Matveev's repositories - public-inbox.git/blob - Makefile.PL
add preliminary INSTALL documentation
[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         },
19 );
20
21 sub MY::postamble {
22   <<'EOF';
23 RSYNC_DEST = public-inbox.org:/srv/public-inbox/
24 docs = README COPYING INSTALL $(shell git ls-files Documentation/ '*.txt')
25 gz_docs = $(addsuffix .gz, $(docs))
26 %.gz: %
27         gzip -9 --rsyncable < $< > $@+
28         touch -r $< $@+
29         mv $@+ $@
30
31 gz-docs: $(gz_docs)
32 rsync-docs:
33         git set-file-times $(docs)
34         $(MAKE) gz-docs
35         rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST)
36
37 EOF
38 }