]> Sergey Matveev's repositories - public-inbox.git/blob - Makefile.PL
get a basic CGI feed sender running
[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 public-inbox-cgi/],
12         PREREQ_PM => {
13                 # note: we use ssoma(1) and spamc(1),
14                 # NOT the Perl modules
15                 # We also depend on git through ssoma.
16                 'Email::MIME' => 0,
17                 'Email::MIME::ContentType' => 0,
18                 'Email::Filter' => 0,
19                 'Email::Address' => 0,
20                 'Date::Parse' => 0,
21                 'Encode::MIME::Header' => 0,
22                 'XML::Atom::SimpleFeed' => 0,
23                 # We have more test dependencies, but do not force
24                 # users to install them
25         },
26 );
27
28 sub MY::postamble {
29   <<'EOF';
30 RSYNC_DEST = public-inbox.org:/srv/public-inbox/
31 docs = README COPYING INSTALL $(shell git ls-files Documentation/ '*.txt')
32 gz_docs = $(addsuffix .gz, $(docs))
33 %.gz: %
34         gzip -9 --rsyncable < $< > $@+
35         touch -r $< $@+
36         mv $@+ $@
37
38 gz-docs: $(gz_docs)
39 rsync-docs:
40         git set-file-times $(docs)
41         $(MAKE) gz-docs
42         rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST)
43
44 EOF
45 }