Mercurial > dotfiles
comparison unixSoft/otherbin/svn-bootstrap.sh @ 59:2eb8cbc08070
Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 02 Mar 2009 15:01:30 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
58:20834b97b814 | 59:2eb8cbc08070 |
---|---|
1 #!/bin/sh | |
2 echo 'fetching and building serf trunk' | |
3 svn co http://serf.googlecode.com/svn/trunk serf || exit 1 | |
4 cd serf | |
5 ./serfmake --prefix=/opt/durin install || exit 3 | |
6 | |
7 echo 'fetching and building svn trunk with swig-py' | |
8 svn co http://svn.collab.net/repos/svn/trunk subversion || exit 4 | |
9 cd subversion | |
10 ./autogen.sh && ./configure --without-apxs --without-sasl \ | |
11 --with-serf=/opt/durin --without-neon --prefix=/opt/durin || exit 5 | |
12 make -j 4 && make install && make swig-py && make install-swig-py || exit 6 |