Building Subversion in your $HOME

Published: Wednesday, Dec 26, 2007 Last modified: Monday, Apr 8, 2024

Download the source code from: http://subversion.tigris.org/project_packages.html#source-release and expand the tar ball.

./configure --prefix $HOME/opt --without-berkeley-db  --with-zlib --with-ssl

make

make install

In your .bashrc # For subversion if [ -d $HOME/opt/bin/ ]; then export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/opt/lib export PATH=$PATH:$HOME/opt/bin/ fi