aboutsummaryrefslogtreecommitdiff
path: root/doc/install
diff options
context:
space:
mode:
authorhttp://poisonbit.wordpress.com/ <poisonbit@web>2010-09-03 15:54:47 +0000
committerJoey Hess <joey@kitenet.net>2010-09-03 15:54:47 +0000
commit336d4884baee1c4f45e836a530520695b73b1b20 (patch)
tree578647b52e7987ecebb22291a0378db63b30748f /doc/install
parenteb2f54fb8ffd66df752d63676a843ae6f4ece8e3 (diff)
downloadikiwiki-336d4884baee1c4f45e836a530520695b73b1b20.tar
ikiwiki-336d4884baee1c4f45e836a530520695b73b1b20.tar.gz
Minor fixes/cleanups on my addition
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/discussion.mdwn8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/install/discussion.mdwn b/doc/install/discussion.mdwn
index 69c2abddc..42c56aa13 100644
--- a/doc/install/discussion.mdwn
+++ b/doc/install/discussion.mdwn
@@ -294,10 +294,10 @@ As plain user ($):
cd local-lib-1.006007/
perl Makefile.PL --bootstrap=~/.perl5
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
curl -L http://cpanmin.us | perl - App::cpanminus
- source "/home/$USER/.bashrc"
+ . ~/.bashrc
cpanm CGI::FormBuilder
cpanm CGI::Session
cpanm HTML::Parser
@@ -305,15 +305,15 @@ As plain user ($):
cpanm -f HTML::Scrubber # tests failed
cpanm Text::Markdown
cpanm URI
+ cd ..
tar -zxf ikiwiki_3.20100831.tar.gz
cd ikiwiki/
perl Makefile.PL INSTALL_BASE= PREFIX=/home/$USER/.perl5
make tests # All tests successful
- make
make install INSTALL_BASE=/home/$USER/.perl5
. ~/.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: