# HG changeset patch # User Augie Fackler # Date 1236027690 21600 # Node ID 2eb8cbc080709ba3b84cc92e6506ec5cfb078ca2 # Parent 20834b97b814fd25b8088d754c48fd90c886c496 Add a script that builds serf and subversion assuming all other deps are installed so that I can wipe and rebuild a little easier. diff --git a/unixSoft/otherbin/svn-bootstrap.sh b/unixSoft/otherbin/svn-bootstrap.sh new file mode 100644 --- /dev/null +++ b/unixSoft/otherbin/svn-bootstrap.sh @@ -0,0 +1,12 @@ +#!/bin/sh +echo 'fetching and building serf trunk' +svn co http://serf.googlecode.com/svn/trunk serf || exit 1 +cd serf +./serfmake --prefix=/opt/durin install || exit 3 + +echo 'fetching and building svn trunk with swig-py' +svn co http://svn.collab.net/repos/svn/trunk subversion || exit 4 +cd subversion +./autogen.sh && ./configure --without-apxs --without-sasl \ + --with-serf=/opt/durin --without-neon --prefix=/opt/durin || exit 5 +make -j 4 && make install && make swig-py && make install-swig-py || exit 6