X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=INSTALL;h=aad52c7b15d70d3aa755ab389c8a6b98c5c98283;hb=dde1b083571ed893cbb1990f01f9e11ed804cba5;hp=99836c13695e62fcc6d5fa0830d5ae114b4f0379;hpb=d06475cc90b2d1f43ef8454d56ddb19e6293a385;p=public-inbox.git diff --git a/INSTALL b/INSTALL index 99836c13..aad52c7b 100644 --- a/INSTALL +++ b/INSTALL @@ -36,19 +36,13 @@ Beyond that, there is a long list of Perl modules required, starting with: pkg: p5-TimeDate rpm: perl-TimeDate -* Devel::Peek deb: libperl5.$MINOR (e.g. libperl5.24) - pkg: perl5 - rpm: perl-Devel-Peek - (typically installed alongside Perl5) +* Digest::SHA typically installed with Perl + rpm: perl-Digest-SHA * Email::MIME deb: libemail-mime-perl pkg: p5-Email-MIME rpm: perl-Email-MIME -* Encode::MIME::Header deb: libencode-perl - pkg: perl5 - rpm: perl-Encode - * Plack deb: libplack-perl pkg: p5-Plack rpm: perl-Plack, perl-Plack-Test, @@ -73,7 +67,7 @@ Numerous optional modules are likely to be useful as well: - Search::Xapian deb: libsearch-xapian-perl pkg: p5-Search-Xapian rpm: perl-Search-Xapian - (for v2, HTTP search) + (HTTP search) - Net::Server deb: libnet-server-perl pkg: pkg-Net-Server @@ -101,6 +95,11 @@ Numerous optional modules are likely to be useful as well: * highlight deb: libhighlight-perl (for syntax highlighting with coderepo) +* xapian-compact (tool) deb: xapian-tools + pkg: xapian-core + rpm: xapian-core + (optional, for public-inbox-compact(1)) + The following modules are typically pulled in by dependencies listed above, so there is no need to explicitly install them: @@ -114,19 +113,37 @@ above, so there is no need to explicitly install them: rpm: perl-Email-Simple (pulled in by Email::MIME) +* Encode deb: libperl5.$MINOR (or libencode-perl) + pkg: perl5 + rpm: perl-Encode + (likely installed with Perl) + - DBI deb: libdbi-perl pkg: p5-DBI rpm: perl-DBI (pulled in by DBD::SQLite) +* Devel::Peek deb: libperl5.$MINOR (e.g. libperl5.24) + pkg: perl5 + rpm: perl-Devel-Peek + (optional for stale FD cleanup in daemons, + typically installed alongside Perl5) + - Filesys::Notify::Simple deb: libfilesys-notify-simple-perl - pkg: pkg-Filesys-Notify-Simple + pkg: p5-Filesys-Notify-Simple rpm: perl-Filesys-Notify-Simple (for public-inbox-watch, pulled in by Plack) +- Linux::Inotify deb: liblinux-inotify2-perl + rpm: perl-Linux-Inotify2 + (for public-inbox-watch on Linux) + +- Filesys::Notify::KQueue pkg: p5-Filesys-Notify-KQueue + (for public-inbox-watch on FreeBSD) + - IO::Compress::Gzip deb: perl-modules (or libio-compress-perl) - rpm: perl-PerlIO-gzip pkg: perl5 + rpm: perl-IO-Compress (for gzipped mbox over HTTP) Uncommonly needed modules: @@ -149,23 +166,30 @@ Optional packages testing and development: pkg: p5-IPC-Run rpm: perl-IPC-Run +- Plack::Test deb: libplack-test-perl + pkg: p5-Plack + rpm: perl-Plack-Test + +- Test::Simple deb: perl-modules-5.$MINOR + pkg: perl5 + rpm: perl-Test-Simple + - XML::Feed deb: libxml-feed-perl pkg: p5-XML-Feed rpm: perl-XML-Feed -- Test::HTTP::Server::Simple deb: libtest-http-server-simple-perl - pkg: p5-Test-HTTP-Server-Simple - rpm: perl-Test-HTTP-Server-Simple - (XXX is this really needed?) - standard MakeMaker installation (Perl) -------------------------------------- +To use MakeMaker, you need to ensure ExtUtils::MakeMaker is available. +This is typically installed with Perl, but RPM-based systems will likely +need to install the `perl-ExtUtils-MakeMaker' package. + Once the dependencies are installed, you should be able to build and install the system (into /usr/local) with: perl Makefile.PL - make + make # GNU make is preferred, `gmake' on BSD systems make test make install # root permissions may be needed