Mercurial > dotfiles
view unixSoft/otherbin/svn-bootstrap.sh @ 388:c35759aceed4
emacs: add a hook to handle ANSI colors in compilation buffers
Some tools just blindly assume they're printing to a color-supporting
terminal. Since fixing them is probably impractical, we'll just work around
their stupidity.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 01 Feb 2016 17:30:54 -0500 |
parents | 2eb8cbc08070 |
children |
line wrap: on
line source
#!/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