summaryrefslogtreecommitdiff
path: root/content/post/2009-08-23-perl-5.10.1-released.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-31 10:16:40 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-31 13:42:48 -0700
commit63f413891d5adc596e4d51dfba4d0d23fdea3ca4 (patch)
treec2726b60515057a20f434bd89c596360ef17852b /content/post/2009-08-23-perl-5.10.1-released.md
parentAdd Google Analytic tracker. (diff)
downloadlumberjaph-63f413891d5adc596e4d51dfba4d0d23fdea3ca4.tar.gz
Stop generating a static site.
Diffstat (limited to 'content/post/2009-08-23-perl-5.10.1-released.md')
-rw-r--r--content/post/2009-08-23-perl-5.10.1-released.md32
1 files changed, 0 insertions, 32 deletions
diff --git a/content/post/2009-08-23-perl-5.10.1-released.md b/content/post/2009-08-23-perl-5.10.1-released.md
deleted file mode 100644
index c33f066..0000000
--- a/content/post/2009-08-23-perl-5.10.1-released.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-date: 2009-08-23T00:00:00Z
-summary: In which I install Perl 5.10.1
-title: Perl 5.10.1 released
----
-
-[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 :)