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 38 39 40 41 42 43 44 45 46 47 48
|
#
# $Id: INSTALL,v 0.72 2001/05/31 15:36:07 dankogai Exp $
#
To install
==========
Unix with a compiler
--------------------
Do the following via web
perl Makefile.PL
make
make test
make install
Macintosh
---------
Run "mac_install.pl" just once. Make sure you have "site_perl"
folder where your MacPerl folder resides. If not, create one before
you run this script.
Windows (ActivePerl)
--------------------
Run "win_install.pl" just once. Make sure you have "site\lib"
folder where your ActivePerl folder resides. If not, create one
before you run this script.
Mac, Win, RedHat Linux with just default packages installed...
---------------------------------------------------------------
(or any other platforms where no compiler is available)
Just copy Jcode.pm and Jcode directory (folder) into perl's lib
directory.
To find where the heck that lib folder is, run this small perl
script.
print join("\n", @INC);
__END__
Dan the Jcoder
|