Created
February 25, 2010 16:16
-
-
Save apk/314680 to your computer and use it in GitHub Desktop.
Build svn for git-svn w/o root access
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -xe | |
rm -rf subversion-1.6.9 | |
tar xzf subversion-deps-1.6.9.tar.gz | |
tar xzf subversion-1.6.9.tar.gz | |
cd subversion-1.6.9 | |
./configure --prefix=$HOME/svn19 --with-apache-libexecdir=$HOME/svn19/ale --with-editor=/bin/vi | |
make | |
make install | |
make swig-pl-lib | |
make install-swig-pl-lib | |
cd subversion/bindings/swig/perl/native | |
perl Makefile.PL PREFIX=$HOME/svn19/pl | |
make install | |
# Then set: | |
# PATH=$HOME/svn19/bin:$PATH | |
# PERL5LIB=$HOME/svn19/pl/lib/perl5/site_perl/5.8.8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment