Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Perl module style guidePreparing a new module for dis ... (Berikutnya)
Language Reference

Installing CPAN Modules

Daftar Isi

NAME

perlmodinstall - Installing CPAN Modules

DESCRIPTION

You can think of a module as the fundamental unit of reusable Perlcode; see perlmod for details. Whenever anyone creates a chunk ofPerl code that they think will be useful to the world, they registeras a Perl developer at http://www.cpan.org/modules/04pause.htmlso that they can then upload their code to the CPAN. The CPAN is theComprehensive Perl Archive Network and can be accessed athttp://www.cpan.org/ , and searched at http://search.cpan.org/ .

This documentation is for people who want to download CPAN modulesand install them on their own computer.

PREAMBLE

First, are you sure that the module isn't already on your system? Tryperl -MFoo -e 1. (Replace "Foo" with the name of the module; forinstance, perl -MCGI::Carp -e 1.

If you don't see an error message, you have the module. (If you dosee an error message, it's still possible you have the module, butthat it's not in your path, which you can display with perl -e"print qq(@INC)".) For the remainder of this document, we'll assumethat you really honestly truly lack an installed module, but havefound it on the CPAN.

So now you have a file ending in .tar.gz (or, less often, .zip). Youknow there's a tasty module inside. There are four steps you must nowtake:

  • DECOMPRESS the file
  • UNPACK the file into a directory
  • BUILD the module (sometimes unnecessary)
  • INSTALL the module.

Here's how to perform each step for each operating system. This is<not> a substitute for reading the README and INSTALL files thatmight have come with your module!

Also note that these instructions are tailored for installing themodule into your system's repository of Perl modules, but you caninstall modules into any directory you wish. For instance, where Isay perl Makefile.PL, you can substitute perl Makefile.PLPREFIX=/my/perl_directory to install the modules into/my/perl_directory. Then you can use the modules from your Perlprograms with use lib "/my/perl_directory/lib/site_perl"; orsometimes just use "/my/perl_directory";. If you're on a systemthat requires superuser/root access to install modules into thedirectories you see when you type perl -e "print qq(@INC)", you'llwant to install them into a local directory (such as your homedirectory) and use this approach.

  • If you're on a Unix or Unix-like system,

    You can use Andreas Koenig's CPAN module( http://www.cpan.org/modules/by-module/CPAN )to automate the following steps, from DECOMPRESS through INSTALL.

    A. DECOMPRESS

    Decompress the file with gzip -d yourmodule.tar.gz

    You can get gzip from ftp://prep.ai.mit.edu/pub/gnu/

    Or, you can combine this step with the next to save disk space:

    1. gzip -dc yourmodule.tar.gz | tar -xof -

    B. UNPACK

    Unpack the result with tar -xof yourmodule.tar

    C. BUILD

    Go into the newly-created directory and type:

    1. perl Makefile.PL
    2. make test

    or

    1. perl Makefile.PL PREFIX=/my/perl_directory

    to install it locally. (Remember that if you do this, you'll have toput use lib "/my/perl_directory"; near the top of the program thatis to use this module.

    D. INSTALL

    While still in that directory, type:

    1. make install

    Make sure you have the appropriate permissions to install the modulein your Perl 5 library directory. Often, you'll need to be root.

    That's all you need to do on Unix systems with dynamic linking.Most Unix systems have dynamic linking. If yours doesn't, or if foranother reason you have a statically-linked perl, and themodule requires compilation, you'll need to build a new Perl binarythat includes the module. Again, you'll probably need to be root.

  • If you're running ActivePerl (Win95/98/2K/NT/XP, Linux, Solaris)

    First, type ppm from a shell and see whether ActiveState's PPMrepository has your module. If so, you can install it with ppm andyou won't have to bother with any of the other steps here. You mightbe able to use the CPAN instructions from the "Unix or Linux" sectionabove as well; give it a try. Otherwise, you'll have to follow thesteps below.

    1. A. DECOMPRESS

    You can use the shareware Winzip ( http://www.winzip.com ) todecompress and unpack modules.

    1. B. UNPACK

    If you used WinZip, this was already done for you.

    1. C. BUILD

    You'll need the nmake utility, available athttp://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exeor dmake, available on CPAN.http://search.cpan.org/dist/dmake/

    Does the module require compilation (i.e. does it have files that endin .xs, .c, .h, .y, .cc, .cxx, or .C)? If it does, life is nowofficially tough for you, because you have to compile the moduleyourself (no easy feat on Windows). You'll need a compiler such asVisual C++. Alternatively, you can download a pre-built PPM packagefrom ActiveState.http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/

    Go into the newly-created directory and type:

    1. perl Makefile.PL
    2. nmake test
    3. D. INSTALL

    While still in that directory, type:

    1. nmake install
  • If you're using a Macintosh with "Classic" MacOS and MacPerl,

    A. DECOMPRESS

    First, make sure you have the latest cpan-mac distribution (http://www.cpan.org/authors/id/CNANDOR/ ), which has utilities fordoing all of the steps. Read the cpan-mac directions carefully andinstall it. If you choose not to use cpan-mac for some reason, thereare alternatives listed here.

    After installing cpan-mac, drop the module archive on theuntarzipme droplet, which will decompress and unpack for you.

    Or, you can either use the shareware StuffIt Expander program( http://my.smithmicro.com/mac/stuffit/ )or the freeware MacGzip program (http://persephone.cps.unizar.es/general/gente/spd/gzip/gzip.html ).

    B. UNPACK

    If you're using untarzipme or StuffIt, the archive should be extractednow. Or, you can use the freeware suntar or Tar (http://hyperarchive.lcs.mit.edu/HyperArchive/Archive/cmp/ ).

    C. BUILD

    Check the contents of the distribution.Read the module's documentation, looking forreasons why you might have trouble using it with MacPerl. Look for.xs and .c files, which normally denote that the distributionmust be compiled, and you cannot install it "out of the box."(See PORTABILITY.)

    D. INSTALL

    If you are using cpan-mac, just drop the folder on theinstallme droplet, and use the module.

    Or, if you aren't using cpan-mac, do some manual labor.

    Make sure the newlines for the modules are in Mac format, not Unix format.If they are not then you might have decompressed them incorrectly. Checkyour decompression and unpacking utilities settings to make sure they aretranslating text files properly.

    As a last resort, you can use the perl one-liner:

    1. perl -i.bak -pe 's/(?:\015)?\012/\015/g' <filenames>

    on the source files.

    Then move the files (probably just the .pm files, though theremay be some additional ones, too; check the module documentation)to their final destination: This willmost likely be in $ENV{MACPERL}site_lib: (i.e.,HD:MacPerl folder:site_lib:). You can add new paths tothe default @INC in the Preferences menu item in theMacPerl application ($ENV{MACPERL}site_lib: is addedautomagically). Create whatever directory structures are required(i.e., for Some::Module, create$ENV{MACPERL}site_lib:Some: and putModule.pm in that directory).

    Then run the following script (or something like it):

    1. #!perl -w
    2. use AutoSplit;
    3. my $dir = "${MACPERL}site_perl";
    4. autosplit("$dir:Some:Module.pm", "$dir:auto", 0, 1, 1);
  • If you're on the DJGPP port of DOS,

    1. A. DECOMPRESS

    djtarx ( ftp://ftp.delorie.com/pub/djgpp/current/v2/ )will both uncompress and unpack.

    1. B. UNPACK

    See above.

    1. C. BUILD

    Go into the newly-created directory and type:

    1. perl Makefile.PL
    2. make test

    You will need the packages mentioned in README.dosin the Perl distribution.

    1. D. INSTALL

    While still in that directory, type:

    1. make install

    You will need the packages mentioned in README.dos in the Perl distribution.

  • If you're on OS/2,

    Get the EMX development suite and gzip/tar, from either Hobbes (http://hobbes.nmsu.edu ) or Leo ( http://www.leo.org ), and then followthe instructions for Unix.

  • If you're on VMS,

    When downloading from CPAN, save your file with a .tgzextension instead of .tar.gz. All other periods in thefilename should be replaced with underscores. For example,Your-Module-1.33.tar.gz should be downloaded asYour-Module-1_33.tgz.

    A. DECOMPRESS

    Type

    1. gzip -d Your-Module.tgz

    or, for zipped modules, type

    1. unzip Your-Module.zip

    Executables for gzip, zip, and VMStar:

    1. http://www.hp.com/go/openvms/freeware/

    and their source code:

    1. http://www.fsf.org/order/ftp.html

    Note that GNU's gzip/gunzip is not the same as Info-ZIP's zip/unzippackage. The former is a simple compression tool; the latter permitscreation of multi-file archives.

    B. UNPACK

    If you're using VMStar:

    1. VMStar xf Your-Module.tar

    Or, if you're fond of VMS command syntax:

    1. tar/extract/verbose Your_Module.tar

    C. BUILD

    Make sure you have MMS (from Digital) or the freeware MMK ( availablefrom MadGoat at http://www.madgoat.com ). Then type this to createthe DESCRIP.MMS for the module:

    1. perl Makefile.PL

    Now you're ready to build:

    1. mms test

    Substitute mmk for mms above if you're using MMK.

    D. INSTALL

    Type

    1. mms install

    Substitute mmk for mms above if you're using MMK.

  • If you're on MVS,

    Introduce the .tar.gz file into an HFS as binary; don't translate fromASCII to EBCDIC.

    A. DECOMPRESS

    Decompress the file with gzip -d yourmodule.tar.gz

    You can get gzip fromhttp://www.s390.ibm.com/products/oe/bpxqp1.html

    B. UNPACK

    Unpack the result with

    1. pax -o to=IBM-1047,from=ISO8859-1 -r < yourmodule.tar

    The BUILD and INSTALL steps are identical to those for Unix. Somemodules generate Makefiles that work better with GNU make, which isavailable from http://www.mks.com/s390/gnu/

PORTABILITY

Note that not all modules will work with on all platforms.See perlport for more information on portability issues.Read the documentation to see if the module will work on yoursystem. There are basically three categoriesof modules that will not work "out of the box" with allplatforms (with some possibility of overlap):

  • Those that should, but don't. These need to be fixed; considercontacting the author and possibly writing a patch.

  • Those that need to be compiled, where the target platformdoesn't have compilers readily available. (These modules contain.xs or .c files, usually.) You might be able to findexisting binaries on the CPAN or elsewhere, or you mightwant to try getting compilers and building it yourself, and thenrelease the binary for other poor souls to use.

  • Those that are targeted at a specific platform.(Such as the Win32:: modules.) If the module is targetedspecifically at a platform other than yours, you're outof luck, most likely.

Check the CPAN Testers if a module should work with your platformbut it doesn't behave as you'd expect, or you aren't sure whether ornot a module will work under your platform. If the module you wantisn't listed there, you can test it yourself and let CPAN Testers know,you can join CPAN Testers, or you can request it be tested.

  1. http://testers.cpan.org/

HEY

If you have any suggested changes for this page, let me know. Pleasedon't send me mail asking for help on how to install your modules.There are too many modules, and too few Orwants, for me to be able toanswer or even acknowledge all your questions. Contact the moduleauthor instead, or post to comp.lang.perl.modules, or ask someonefamiliar with Perl on your operating system.

AUTHOR

Jon Orwant

[email protected]

with invaluable help from Chris Nandor, and valuable help from BrandonAllbery, Charles Bailey, Graham Barr, Dominic Dunlop, JarkkoHietaniemi, Ben Holzman, Tom Horsley, Nick Ing-Simmons, TuomasJ. Lukka, Laszlo Molnar, Alan Olsen, Peter Prymmer, Gurusamy Sarathy,Christoph Spalinger, Dan Sugalski, Larry Virden, and Ilya Zakharevich.

First version July 22, 1998; last revised November 21, 2001.

COPYRIGHT

Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved.

This document may be distributed under the same terms as Perl itself.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Perl module style guidePreparing a new module for dis ... (Berikutnya)