summaryrefslogtreecommitdiff
path: root/posts/2009-08-23-perl-5.10.1-released.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--posts/2009-08-23-perl-5.10.1-released.md (renamed from posts/2009-08-23-perl-5.10.1-released.org)18
1 files changed, 7 insertions, 11 deletions
diff --git a/posts/2009-08-23-perl-5.10.1-released.org b/posts/2009-08-23-perl-5.10.1-released.md
index a84ff19..d65cff5 100644
--- a/posts/2009-08-23-perl-5.10.1-released.org
+++ b/posts/2009-08-23-perl-5.10.1-released.md
@@ -1,30 +1,26 @@
-[[http://www.cpan.org/modules/by-authors/id/D/DA/DAPM/perl-5.10.1.tar.bz2][Perl
-5.10.1]]
-[[http://www.nntp.perl.org/group/perl.perl5.porters/2009/08/msg150172.html][has
-been released]]. You can download it from the CPAN, or if you can't
-wait, [[http://www.iabyn.com/tmp/perl-5.10.1.tar.bz2][here]].
+[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:
-#+BEGIN_EXAMPLE
+``` 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
-#+END_EXAMPLE
+```
Add the path to your environment
-#+BEGIN_EXAMPLE
+``` example
export PATH=${HOME}/perl/5.10.1/bin:$PATH
-#+END_EXAMPLE
+```
and install your CPAN's modules:
-#+BEGIN_EXAMPLE
+``` example
PERL_MM_USE_DEFAULT=1 cpan Bundle::CPANxxl Task::Kensho
-#+END_EXAMPLE
+```
Now you can start to play with it :)