summaryrefslogblamecommitdiff
path: root/posts/2009-08-23-perl-5.10.1-released.md
blob: d65cff588d22c5fdd5188bf02fba1a025b302d06 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                                                                                                                                                                                                                                                    


                           
           





                                                    
   


                                
           
                                             
   


                                
           
                                                           
   

                                    
[Perl 5.10.1](http://www.cpan.org/modules/by-authors/id/D/DA/DAPM/perl-5.10.1.tar.bz2) [has been released](http://www.nntp.perl.org/group/perl.perl5.porters/2009/08/msg150172.html). You can download it from the CPAN, or if you can't wait, [here](http://www.iabyn.com/tmp/perl-5.10.1.tar.bz2).

Next, you need to build it:

``` example
    mkdir ~/perl/5.10.1
    cd ~/code/build/perl-5.10.1
    perl Configure -de -Dprefix=${HOME}/perl/5.10.1/
    make
    make test
    make install
```

Add the path to your environment

``` example
    export PATH=${HOME}/perl/5.10.1/bin:$PATH
```

and install your CPAN's modules:

``` example
    PERL_MM_USE_DEFAULT=1 cpan Bundle::CPANxxl Task::Kensho
```

Now you can start to play with it :)