summaryrefslogtreecommitdiff
path: root/posts/2009-08-23-perl-5.10.1-released.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-08-04 11:12:37 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-08-04 11:12:37 -0700
commit2d2a43f200b88627253f2906fbae87cef7c1e8ce (patch)
treec65377350d12bd1e62e0bdd58458c1044541c27b /posts/2009-08-23-perl-5.10.1-released.md
parentUse Bullet list for the index. (diff)
downloadlumberjaph-2d2a43f200b88627253f2906fbae87cef7c1e8ce.tar.gz
Mass convert all posts from markdown to org.
Diffstat (limited to 'posts/2009-08-23-perl-5.10.1-released.md')
-rw-r--r--posts/2009-08-23-perl-5.10.1-released.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/posts/2009-08-23-perl-5.10.1-released.md b/posts/2009-08-23-perl-5.10.1-released.md
deleted file mode 100644
index af5fd1d..0000000
--- a/posts/2009-08-23-perl-5.10.1-released.md
+++ /dev/null
@@ -1,26 +0,0 @@
-[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 :)