zoukankan      html  css  js  c++  java
  • 安装你自己的perl modules

    安装你自己的perl modules。当没有root权限的时候,需要安装perl modules到自己的home目录下。

    来自:http://servers.digitaldaze.com/extensions/perl/modules.html

    Installing Perl5 Modules Locally

    Normally, the Perl5 module installation procedure includes commands something like these:

    % perl5 Makefile.PL
    % make
    % make test
    % make install
    % make clean

    The first command, perl5 Makefile.PL, directs perl5 to create a makefile for the new module you are installing. When installing a perl5 module locally you must designate the home directory of your perl5 installation on the command line. That information is used by perl5 to create the makefile. Substitute the following command for perl5 Makefile.PL:

    % perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local

    The value USERNAME above should be replaced with your Virtual Private Server primary user account name. So the complete installation process is:

    % perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local
    % make
    % make test
    % make install
    % make clean

    For older modules it may be necessary to designate several other variables on the command line during the module installation:

    % perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local \
    INSTALLPRIVLIB=/usr/home/USERNAME/usr/local/lib/perl5 \
    INSTALLSCRIPT=/usr/home/USERNAME/usr/local/bin \
    INSTALLSITELIB=/usr/home/USERNAME/usr/local/lib/perl5/site_perl \
    INSTALLBIN=/usr/home/USERNAME/usr/local/bin \
    INSTALLMAN1DIR=/usr/home/USERNAME/usr/local/lib/perl5/man \
    INSTALLMAN3DIR=/usr/home/USERNAME/usr/local/lib/perl5/man/man3

    To save yourself some typing you can create a file and put these variable assignments above in to a file (FILENAME) something like this:

    PREFIX=/usr/home/USERNAME/usr/local \
    INSTALLPRIVLIB=/usr/home/USERNAME/usr/local/lib/perl5 \
    INSTALLSCRIPT=/usr/home/USERNAME/usr/local/bin \
    INSTALLSITELIB=/usr/home/USERNAME/usr/local/lib/perl5/site_perl \
    INSTALLBIN=/usr/home/USERNAME/usr/local/bin \
    INSTALLMAN1DIR=/usr/home/USERNAME/usr/local/lib/perl5/man \
    INSTALLMAN3DIR=/usr/home/USERNAME/usr/local/lib/perl5/man/man3

    Then, each time you install a perl5 module you can use the following syntax:

    % perl5 Makefile.PL `cat FILENAME
    % make
    % make test
    % make install
    % make clean

    You also can have a few different local module installation procedures, for example one for production perl and another for development:

    % perl5 Makefile.PL `cat FILENAME.production`

    or

    % perl5 Makefile.PL `cat FILENAME.development`

     

    完!


    作者:iTech
    微信公众号: cicdops
    出处:http://itech.cnblogs.com/
    github:https://github.com/cicdops/cicdops

  • 相关阅读:
    C++入门经典-例8.5-多重继承
    C++入门经典-例8.3-子类显示调用父类构造函数
    C++入门经典-例8.2-构造函数的访问顺序
    C++入门经典-类成员的可访问性,继承后的可访问性
    C++入门经典-例8.1-类的继承
    C++入门经典-例7.10-运算符的重载,重载加号运算符
    C++入门经典-例7.9-对象数组,批量化生产
    C++入门经典-例7.8-const对象,标准尺寸
    C++入门经典-例7.7-对象与复制,菌类的繁殖
    C++入门经典-例7.6-this指针,同一个类的不同对象数据
  • 原文地址:https://www.cnblogs.com/itech/p/2822044.html
Copyright © 2011-2022 走看看