X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=313161d417fdfc7608661d464eff0385202c96e9;hb=789b6e9c6de8012b556eb6d5345339eaf61f1989;hp=5d2f5c572bc4ca5133089fd09b3d5250f6dd73a0;hpb=cd9dc9aee6cfaf6358f8b338d2e99ff6a8dfd711;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index 5d2f5c57..313161d4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,7 @@ WriteMakefile( NAME => 'public-inbox', VERSION => '0.0.0', AUTHOR => 'Eric Wong ', - ABSTRACT => 'public-inbox.org infrastructure', + ABSTRACT => 'public-inbox server infrastructure', EXE_FILES => [qw/public-inbox-mda public-inbox-cgi/], PREREQ_PM => { # note: we use ssoma(1) and spamc(1), @@ -17,10 +17,12 @@ WriteMakefile( 'Email::MIME::ContentType' => 0, 'Email::Filter' => 0, 'Email::Address' => 0, + 'Mail::Thread' => '2.5', # 2.5+ needed for Email::Simple compat '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, @@ -45,5 +47,9 @@ rsync-docs: $(MAKE) gz-docs rsync --chmod=Fugo=r -av $(gz_docs) $(docs) $(RSYNC_DEST) +N = $(shell echo $$(( $$(nproc 2>/dev/null || echo 2) + 1))) +check:: pure_all + prove -lv -j$(N) + EOF }