in reply to Re: rtf to pdf
in thread rtf to pdf

Thanks for that.

The reason I am looking for a pure script is because getting modules onto my PDA Perl installation is tricky to say the least.

I'll continue searching anyway.

Thanks again

Jason

Replies are listed 'Best First'.
Re^3: rtf to pdf
by ph713 (Pilgrim) on Oct 07, 2005 at 15:05 UTC
    The two I listed (and doubtless most of the rest of the PDF and RTF modules in CPAN) are "pure perl", which is what I thought you meant when I first read it. If you can build a script on your PC that uses them and does the job, then you can certainly also cut+paste the contents of pure perl modules into your scripts (just remember to switch back to package main; after including the modules' source).
Re^3: rtf to pdf
by ikegami (Patriarch) on Oct 07, 2005 at 15:37 UTC
    getting modules onto my PDA Perl installation is tricky to say the least.

    If the modules are Pure Perl, all you need to do is unzip lib/* into the perl/site/lib/ directory or in the same directory as the script that uses them. It doesn't get easier than that.