/ Published in: Bash
URL: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260&expandFolder=74
Installs subversion client package on a shared host machine using the downloadable packages. Turns off the SWIG wrapper library and serving local repositories over apache. Just add ~/subversion/bin to your environment path.
Expand |
Embed | Plain Text
#!/bin/sh version='1.4.4' subversion="subversion-$version.tar.bz2" subversion_deps="subversion-deps-$version.tar.bz2" curl -O http://subversion.tigris.org/downloads/$subversion curl -O http://subversion.tigris.org/downloads/$subversion_deps tar -jxvf $subversion tar -jxvf $subversion_deps cd subversion-$version ./configure --prefix=$HOME/subversion --without-swig --without-apache make make install cd .. rm -rf subversion-$version rm $subversion_deps rm $subversion
You need to login to post a comment.
