From 63f413891d5adc596e4d51dfba4d0d23fdea3ca4 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 31 Jul 2016 10:16:40 -0700 Subject: Stop generating a static site. --- posts/2009-08-23-perl-5.10.1-released.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 posts/2009-08-23-perl-5.10.1-released.md (limited to 'posts/2009-08-23-perl-5.10.1-released.md') diff --git a/posts/2009-08-23-perl-5.10.1-released.md b/posts/2009-08-23-perl-5.10.1-released.md new file mode 100644 index 0000000..af5fd1d --- /dev/null +++ b/posts/2009-08-23-perl-5.10.1-released.md @@ -0,0 +1,26 @@ +[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: + +```bash +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 + +```bash +export PATH=${HOME}/perl/5.10.1/bin:$PATH +``` + +and install your CPAN's modules: + +```bash +PERL_MM_USE_DEFAULT=1 cpan Bundle::CPANxxl Task::Kensho +``` + +Now you can start to play with it :) -- cgit v1.2.3