Perl: Difference between revisions
Jump to navigation
Jump to search
m (Added navbox) |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
= General = | = General = | ||
* Comprehensive Perl Archive Network: https://www.cpan.org/ | |||
: This is where one can get Perl. | |||
* Download Perl source code: https://www.cpan.org/src/README.html | |||
= Installing your own copy of Perl = | = Installing your own copy of Perl = | ||
Line 45: | Line 49: | ||
</pre> | </pre> | ||
= Links = | |||
[[ARC Software pages]] | |||
[[Category:ARC]] | [[Category:ARC]] |
Latest revision as of 19:33, 18 October 2023
General
- Comprehensive Perl Archive Network: https://www.cpan.org/
- This is where one can get Perl.
- Download Perl source code: https://www.cpan.org/src/README.html
Installing your own copy of Perl
$ mkdir -p ~/src/perl $ cd ~/src/perl $ wget https://www.cpan.org/src/5.0/perl-5.32.0.tar.gz $ tar xvf perl-5.32.0.tar.gz $ cd perl-5.32.0/ $ unset PERL5LIB $ unset PERL5OPT $ DEST="$HOME/software/perl-5.32.0" $ mkdir -p $DEST $ PREF="-Dprefix=$DEST" $ OPTS="-Dusethreads" $ ./Configure -de $PREF $OPTS $ make -j 4 $ make test |& tee tests.log $ make install
Activation script activate-my-perl.sh:
#! /bin/bash ROOTDIR="$HOME/bin/perl-5.32.0" unset PERL5LIB unset PERL5OPT export PATH=$ROOTDIR/bin:$PATH export MANPATH=$ROOTDIR/man:$MANPATH
Links
|