Minor fixes/cleanups on my addition
parent
eb2f54fb8f
commit
336d4884ba
|
@ -294,10 +294,10 @@ As plain user ($):
|
||||||
cd local-lib-1.006007/
|
cd local-lib-1.006007/
|
||||||
perl Makefile.PL --bootstrap=~/.perl5
|
perl Makefile.PL --bootstrap=~/.perl5
|
||||||
make test && make install
|
make test && make install
|
||||||
echo 'eval $(perl -I$HOME/.perl5/lib/perl5 -Mlocal::lib)' >>~/.bashrc
|
echo 'eval $(perl -I$HOME/.perl5/lib/perl5 -Mlocal::lib=$HOME/.perl5)' >>~/.bashrc
|
||||||
. ~/.bashrc
|
. ~/.bashrc
|
||||||
curl -L http://cpanmin.us | perl - App::cpanminus
|
curl -L http://cpanmin.us | perl - App::cpanminus
|
||||||
source "/home/$USER/.bashrc"
|
. ~/.bashrc
|
||||||
cpanm CGI::FormBuilder
|
cpanm CGI::FormBuilder
|
||||||
cpanm CGI::Session
|
cpanm CGI::Session
|
||||||
cpanm HTML::Parser
|
cpanm HTML::Parser
|
||||||
|
@ -305,15 +305,15 @@ As plain user ($):
|
||||||
cpanm -f HTML::Scrubber # tests failed
|
cpanm -f HTML::Scrubber # tests failed
|
||||||
cpanm Text::Markdown
|
cpanm Text::Markdown
|
||||||
cpanm URI
|
cpanm URI
|
||||||
|
cd ..
|
||||||
tar -zxf ikiwiki_3.20100831.tar.gz
|
tar -zxf ikiwiki_3.20100831.tar.gz
|
||||||
cd ikiwiki/
|
cd ikiwiki/
|
||||||
perl Makefile.PL INSTALL_BASE= PREFIX=/home/$USER/.perl5
|
perl Makefile.PL INSTALL_BASE= PREFIX=/home/$USER/.perl5
|
||||||
make tests # All tests successful
|
make tests # All tests successful
|
||||||
make
|
|
||||||
make install INSTALL_BASE=/home/$USER/.perl5
|
make install INSTALL_BASE=/home/$USER/.perl5
|
||||||
. ~/.bashrc
|
. ~/.bashrc
|
||||||
|
|
||||||
Using cpan or cpanm with local::lib, you can install any other needed dependency, as plain user in your home (XS modules may need -dev packages)
|
Using cpan or cpanm with local::lib, you can install any other dependency, as plain user (in your home). XS modules may need -dev packages.
|
||||||
|
|
||||||
After all, here it's:
|
After all, here it's:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue