X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=7dac4924a7791aa524829c5516bf2b4f19b64429;hb=aca047222a47e8d5277466d2dcc0618f12bdf8de;hp=5d3ee75c0133d40a04f76e250e512f8d93af600a;hpb=bf4630c098ad7159ba36dea6cfe77c4cf6806ffe;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index 5d3ee75c..7dac4924 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,15 +7,26 @@ WriteMakefile( NAME => 'public-inbox', VERSION => '0.0.0', AUTHOR => 'Eric Wong ', - ABSTRACT => 'public-inbox.org infrastructure', - EXE_FILES => [qw/public-inbox-mda/], + ABSTRACT => 'public-inbox server infrastructure', + 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, + 'IPC::Run' => 0, + 'File::Path::Expand' => 0, + 'CGI' => 0, + 'URI::Escape' => 0, + # We have more test dependencies, but do not force + # users to install them }, );