Giter Site home page Giter Site logo

jrey / app-perlbrew Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gugod/app-perlbrew

2.0 1.0 0.0 2.63 MB

Manage perl installations in your $HOME

Home Page: http://github.com/gugod/App-perlbrew

License: MIT License

Perl 99.51% Shell 0.49%

app-perlbrew's Introduction

NAME
    App::perlbrew - Manage perl installations in your $HOME

SYNOPSIS
        # Initialize
        perlbrew init

        # pick a prefered CPAN mirror
        perlbrew mirror

        # Install some Perls
        perlbrew install perl-5.12.2
        perlbrew install perl-5.8.1
        perlbrew install perl-5.13.6

        # See what were installed
        perlbrew list

        # Switch perl in the $PATH
        perlbrew switch perl-5.12.2
        perl -v

        # Switch to another version
        perlbrew switch perl-5.8.1
        perl -v

        # Switch to a certain perl executable not managed by perlbrew.
        perlbrew switch /usr/bin/perl

        # Or turn it off completely. Useful when you messed up too deep.
        perlbrew off

        # Use 'switch' command to turn it back on.
        perlbrew switch perl-5.12.2

DESCRIPTION
    perlbrew is a program to automate the building and installation of perl
    in the users HOME. At the moment, it installs everything to
    "~/perl5/perlbrew", and requires you to tweak your PATH by including a
    bashrc/cshrc file it provides. You then can benefit from not having to
    run 'sudo' commands to install cpan modules because those are installed
    inside your HOME too. It's a completely separate perl environment.

INSTALLATION
    To use "perlbrew", it is required to install "curl" or "wget" first.
    "perlbrew" depends on one of this two external commmands to be there in
    order to fetch files from the internet.

    The recommended way to install perlbrew is to run these statements in
    your shell:

        curl -LO http://xrl.us/perlbrew
        chmod +x perlbrew
        ./perlbrew install

    or more simply:

        curl -L http://xrl.us/perlbrewinstall | bash

    After that, "perlbrew" installs itself to "~/perl5/perlbrew/bin", and
    you should follow the instruction on screen to setup your ".bashrc" or
    ".cshrc" to put it in your PATH.

    The directory "~/perl5/perlbrew" will contain all install perl
    executables, libraries, documentations, lib, site_libs. If you need to
    install "perlbrew", and the perls it brews, into somewhere else because,
    say, your HOME has limited quota, you can do that by setting a
    "PERLBREW_ROOT" environment variable before you run "./perlbrew
    install".

        export PERLBREW_ROOT=/mnt/perlbrew
        ./perlbrew install

    The downloaded perlbrew is a self-contained standalone program that
    embeds all non-core modules it uses. It should be runnable with perl 5.8
    or later versions of perl.

    You may also install perlbrew from CPAN with cpan / cpanp / cpanm:

        cpan App::perlbrew

    This installs 'perlbrew' into your current PATH and it is always
    executed with your current perl.

    NOTICE. When you install or upgrade perlbrew with cpan / cpanp / cpanm,
    make sure you are not using one of the perls brewed with perlbrew. If
    so, the `perlbrew` executable you just installed will not be available
    after you switch to other perls. You might not be able to invoke further
    "perlbrew" commands after so because the executable "perlbrew" is not in
    your "PATH" anymore. Installing it again with cpan can temporarily solve
    this problem. To ensure you are not using a perlbrewed perl, run
    "perlbrew off" before upgrading.

    It should be relatively safe to install "App::perlbrew" with system cpan
    (like "/usr/bin/cpan") because then it will be installed under a system
    PATH like "/usr/bin", which is not affected by "perlbrew switch"
    command.

    Again, it is recommended to let "perlbrew" install itself. It's easier,
    and it works better.

USAGE
    Please read the program usage by running

        perlbrew

    (No arguments.) To read a more detailed one:

        perlbrew -h

PROJECT DEVELOPMENT
    perlbrew project uses PivotalTracker for task tracking:
    <http://www.pivotaltracker.com/projects/129997>. You may also report
    bugs to github <http://github.com/gugod/App-perlbrew/issues> or RT
    <https://rt.cpan.org/Dist/Display.html?Queue=App-perlbrew>. They will be
    definitely reviewed and handled.

AUTHOR
    Kang-min Liu "<[email protected]>"

COPYRIGHT
    Copyright (c) 2010, Kang-min Liu "<[email protected]>".

LICENCE
    The MIT License

CONTRIBUTORS
    Patches and code improvements have been contributed by:

    Tatsuhiko Miyagawa, Chris Prather, Yanick Champoux, aero, Jason May,
    Jesse Leuhrs, Andrew Rodland, Justin Davis, Masayoshi Sekimura,
    castaway, jrockway, chromatic, Goro Fuji, Sawyer X, Danijel Tasov,
    polettix, and tokuhirom.

DISCLAIMER OF WARRANTY
    BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
    FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
    PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
    EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
    ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
    YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
    NECESSARY SERVICING, REPAIR, OR CORRECTION.

    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
    REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE
    TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
    CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
    SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
    RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
    FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
    SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
    DAMAGES.

app-perlbrew's People

Contributors

gugod avatar perigrin avatar melo avatar miyagawa avatar xsawyerx avatar yanick avatar yibe avatar polettix avatar tokuhirom avatar castaway avatar juster avatar jrockway avatar jasonmay avatar doy avatar trcjr avatar chromatic avatar zaphod42 avatar dalinaum avatar fcuny avatar gfx avatar avar avatar abh avatar xdg avatar doherty avatar nigelm avatar book avatar squeeks avatar hidekiy avatar

Stargazers

Jennifer Maldonado avatar Jose Rey avatar

Watchers

Jose Rey avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.