-
Notifications
You must be signed in to change notification settings - Fork 6
Wt2Db
Thomas Schraitle edited this page Nov 1, 2018
·
2 revisions
wt2db is a component of the Lampadas Project that converts Wiki text to DocBook. It can also be used as a standalone application. Follow the steps below to check it out from the LDP cvs repository and install it locally.```xml
- Log into the LDP cvs repository anonymously:
cvs -d :pserver:cvs@anoncvs.linuxdoc.org:/cvsroot login
- Grab the wt2db module:
cvs -d :pserver:cvs@anoncvs.linuxdoc.org:/cvsroot co LDP/wt2db/
- wt2db also requires the HTML::Entities perl module, so do:
perl -MCPAN -e shell
- At the cpan> prompt, type:
install HTML::Entities
- Once that's done, you should be able to run the Makefile in the wt2db distribution:
./Makefile.PL
- Build the package:
make
- Install the files in the appropriate locations:
make install```