summaryrefslogtreecommitdiff
path: root/_posts/2009-08-23-perl-5.10.1-released.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-02 20:04:59 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-02 20:04:59 -0700
commit8f187c573954b6c8d1650ac33a164c52e032ac16 (patch)
treec605d0cf51d272393006e5486bfdc24984cf801f /_posts/2009-08-23-perl-5.10.1-released.md
parentUpdate some posts to make the tests pass. (diff)
downloadlumberjaph-8f187c573954b6c8d1650ac33a164c52e032ac16.tar.gz
Stop using Jekyll.
Moving away from Jekyll to Hugo. This commit clean up the old files to prepare for the migration.
Diffstat (limited to '')
-rw-r--r--_posts/2009-08-23-perl-5.10.1-released.md32
1 files changed, 0 insertions, 32 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 0806675..0000000
--- a/_posts/2009-08-23-perl-5.10.1-released.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-layout: post
-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:
-
-{% highlight 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
-{% endhighlight %}
-
-Add the path to your environment
-
-{% highlight bash %}
-export PATH=${HOME}/perl/5.10.1/bin:$PATH
-{% endhighlight %}
-
-and install your CPAN's modules:
-
-{% highlight bash %}
-PERL_MM_USE_DEFAULT=1 cpan Bundle::CPANxxl Task::Kensho
-{% endhighlight %}
-
-Now you can start to play with it :)