1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
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
|