Jun 2

Building Subversion with Ruby Bindings

by Peter Jones / June 2, 2006

I needed to build the Ruby Subversion bindings for my upcoming wrapper around Subversion. It took a bit of poking around, so I thought I'd post the info here.

  • Build and install Subversion, here is how I did it:
./configure --prefix=$HOME/local --without-apache --without-berkeley-db --with-ssl
make
make install
  • Build and install the Ruby bindings (from the root of the Subversion source tree):
make swig-rb
sudo make install-swig-rb

Tags: ruby svn swig

0 Comments