diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2016-07-02 20:06:31 -0700 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2016-07-02 20:06:31 -0700 |
| commit | 4b8e43f75b394a4e6169884fbfb4c606865c6a22 (patch) | |
| tree | 48cae6b8e8f9b68cae29676d8a15cb3ddbfcccda /content/post/2009-08-23-perl-5.10.1-released.md | |
| parent | Stop using Jekyll. (diff) | |
| download | lumberjaph-4b8e43f75b394a4e6169884fbfb4c606865c6a22.tar.gz | |
Import migration from Jekyll to Hugo.
All the posts were converted, and the layout is created. This looks like
it works just fine.
Diffstat (limited to '')
| -rw-r--r-- | content/post/2009-08-23-perl-5.10.1-released.md | 32 |
1 files changed, 32 insertions, 0 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 new file mode 100644 index 0000000..c33f066 --- /dev/null +++ b/content/post/2009-08-23-perl-5.10.1-released.md @@ -0,0 +1,32 @@ +--- +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 :) |
