summaryrefslogtreecommitdiff
path: root/posts/2009-08-23-perl-5.10.1-released.org
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-08-04 11:45:44 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-08-04 11:45:44 -0700
commit585b48b6a605cb71ef99dd767880e1b7ee5bf24e (patch)
treec65377350d12bd1e62e0bdd58458c1044541c27b /posts/2009-08-23-perl-5.10.1-released.org
parentUse Bullet list for the index. (diff)
parentMass convert all posts from markdown to org. (diff)
downloadlumberjaph-585b48b6a605cb71ef99dd767880e1b7ee5bf24e.tar.gz
Merge branch 'convert-to-org'
Diffstat (limited to '')
-rw-r--r--posts/2009-08-23-perl-5.10.1-released.org30
1 files changed, 30 insertions, 0 deletions
diff --git a/posts/2009-08-23-perl-5.10.1-released.org b/posts/2009-08-23-perl-5.10.1-released.org
new file mode 100644
index 0000000..a84ff19
--- /dev/null
+++ b/posts/2009-08-23-perl-5.10.1-released.org
@@ -0,0 +1,30 @@
+[[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]].
+
+Next, you need to build it:
+
+#+BEGIN_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
+ export PATH=${HOME}/perl/5.10.1/bin:$PATH
+#+END_EXAMPLE
+
+and install your CPAN's modules:
+
+#+BEGIN_EXAMPLE
+ PERL_MM_USE_DEFAULT=1 cpan Bundle::CPANxxl Task::Kensho
+#+END_EXAMPLE
+
+Now you can start to play with it :)