Skip to content

Instantly share code, notes, and snippets.

@thcipriani
Created October 23, 2013 16:55
Show Gist options
  • Save thcipriani/7122315 to your computer and use it in GitHub Desktop.
Save thcipriani/7122315 to your computer and use it in GitHub Desktop.
SVN from source on OSX
* Make sure command line tools are installed for your OS
* Switch to root:
`sudo -i`
enter your password when prompted
* Check your SVN version:
`svn --version`
* Get Subverion 1.6 code in /usr/local/src/:
`cd /usr/local/src && wget https://www.dropbox.com/s/onl1bi7k5hyqiyf/osx-subversion-1.6.16.tar.bz2`
* Untar svn:
`tar -xvjf osx-subversion-1.6.16.tar.bz2 && rm -rf osx-subversion-1.6.16.tar.bz2 && cd osx-subversion-1.6.16`
* configure:
`./configure --prefix=/usr --with-ssl --with-zlib=/usr`
* make && make install
`make && make install`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment