Binaries packages for Windows and .deb and .rpm builds for Linux are available for download from http://darbs.svn.sourceforge.net/viewvc/darbs/branches/xml/release/.
DARBS is fairly light on dependencies. In order to build it you need:
For building on Windows the nuwen MinGW distribution provides a complete toolchain including a compiled version of Boost.
A tarball of the latest stable version of DARBS can be downloaded from http://darbs.svn.sourceforge.net/viewvc/darbs/branches/xml/release/.
To get the latest version DARBS from the svn repository, run the following command:
svn co https://darbs.svn.sourceforge.net/svnroot/darbs/branches/xml darbs
To create the files needed to build each DARBS run the following commands from the root folder:
cd build
cmake -G "OUTPUT_TYPE" ../
Where you replace OUTPUT_TYPE with the build system you are going to use. For a full list of supported generators see http://www.cmake.org/cmake/help/cmake-2-8-docs.html#section_Generators.
To build all the components of DARBS you then follow the regular procedure for whatever build system you are using. For example on a Unix system the complete series of commands would be:
cd build
cmake -G "Unix Makefiles" ../
make
make install