X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=5d2f5c572bc4ca5133089fd09b3d5250f6dd73a0;hb=cd9dc9aee6cfaf6358f8b338d2e99ff6a8dfd711;hp=b2fbb18fda4e52d8de62e75213344be94dca810d;hpb=329736d51862b767cdaecf5c13a53e642164fbae;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index b2fbb18f..5d2f5c57 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,13 +8,24 @@ WriteMakefile( VERSION => '0.0.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'public-inbox.org infrastructure', - EXE_FILES => [qw/public-inbox-mda/], + EXE_FILES => [qw/public-inbox-mda public-inbox-cgi/], PREREQ_PM => { - # note: we use ssoma(1) and spamc(1), + # note: we use ssoma(1) and spamc(1), # NOT the Perl modules + # We also depend on git through ssoma. 'Email::MIME' => 0, 'Email::MIME::ContentType' => 0, 'Email::Filter' => 0, + 'Email::Address' => 0, + 'Date::Parse' => 0, + 'Encode::MIME::Header' => 0, + 'XML::Atom::SimpleFeed' => 0, + 'IPC::Open2' => 0, + 'File::Path::Expand' => 0, + 'CGI' => 0, + 'URI::Escape' => 0, + # We have more test dependencies, but do not force + # users to install them }, );