]> Sergey Matveev's repositories - public-inbox.git/blob - Makefile.PL
cgi: rename to have .cgi suffix
[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 server infrastructure',
11         EXE_FILES => [qw/public-inbox-mda public-inbox.cgi
12                         public-inbox-learn/],
13         PREREQ_PM => {
14                 # note: we use ssoma(1) and spamc(1), NOT the Perl modules
15                 # We also depend on git through ssoma.
16                 # Keep this sorted and synced to the INSTALL document
17                 'CGI' => 0,
18                 'Date::Parse' => 0,
19                 'Email::Address' => 0,
20                 'Email::Filter' => 0,
21                 'Email::MIME' => 0,
22                 'Email::MIME::ContentType' => 0,
23                 'Encode::MIME::Header' => 0,
24                 'File::Path::Expand' => 0,
25                 'IPC::Run' => 0,
26                 'Mail::Thread' => '2.5', # 2.5+ needed for Email::Simple compat
27                 'URI::Escape' => 0,
28                 'XML::Atom::SimpleFeed' => 0,
29                 # We have more test dependencies, but do not force
30                 # users to install them
31         },
32 );
33
34 sub MY::postamble {
35   <<'EOF';
36 RSYNC_DEST = public-inbox.org:/srv/public-inbox/
37 docs = README COPYING INSTALL $(shell git ls-files Documentation/ '*.txt')
38 gz_docs = $(addsuffix .gz, $(docs))
39 %.gz: %
40         gzip -9 --rsyncable < $< > $@+
41         touch -r $< $@+
42         mv $@+ $@
43
44 gz-docs: $(gz_docs)
45 rsync-docs:
46         git set-file-times $(docs)
47         $(MAKE) gz-docs
48         rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST)
49
50 N = $(shell echo $$(( $$(nproc 2>/dev/null || echo 2) + 1)))
51 check:: pure_all
52         prove -lv -j$(N)
53
54 EOF
55 }