INTALL: Perl Text to HTML converter
------------------------------------

System wide install

        Run makefile with appropriate parameters. The program is
        installed without the .pl file suffix

            make DESTDIR= prefix=/usr/local install

	To test the installation (to see how files are installed):

	    make install-test
	    find -type f tmp/

Manual install

        1. Copy bin/*.pl somewhere along $PATH
        2. Copy bin/*.1 somewhere along $MANPATH

Optional

        In order to use the link checking feature (--Link* option), extra
        Perl modules are needed. Check with these commands if they are
	already installed.

            perl -MHTML::FormatText -e 'print ok'
            perl -MHTML::Parse      -e 'print ok'
            perl -MLWP::UserAgent   -e 'print ok'

        To install them, visit http://cpan.perl.org or if you have
	administrative rights to install software, use commands:

            perl -MCPAN -e shell
            cpan> install <module name>

End of file
