Boson logo

Boson logo


  Installing Boson

Note that these instructions only apply if you're using a source code version. If you have a binary version, it should be installed like any other package for your distribution.

Before compiling, take a look at the compiler requirements and make sure you have downloaded at least the code and data packages OR the big all-in-one package.

Now you need to unpack, configure, compile and install them:

 If you downloaded the big package

$ tar xjvf boson-all-0.13.tar.bz2
$ cd boson-all-0.13
$ mkdir build
$ cd build
$ cmake ..
$ make
$ su
# make install

Note that if you want to install at a custom prefix, use 'cmake -DCMAKE_INSTALL_PREFIX=/install/boson/to ..' instead of 'cmake ..'.

 If you downloaded code, data and music separately do all of the following

$ tar xjvf boson-code-0.13.tar.bz2
$ cd code
$ mkdir build
$ cd build
$ cmake ..
$ make
$ su
# make install
$ tar xjvf boson-data-0.13.tar.bz2
$ cd data
$ mkdir build
$ cd build
$ cmake ..
$ make
$ su
# make install
$ tar xjvf boson-music-0.13.tar.bz2
$ cd music
$ mkdir build
$ cd build
$ cmake ..
$ make
$ su
# make install

After you've done it, Boson should be installed! Happy playing!