Build and Install instructions
==============================

REQUERIMENTS
------------

To be able to compile Beaver you will need those packages:
 - C headers and libraries of GTK+ 2.12 or higher
 - Autoconf 2.63 or higher
 - Automake 1.10 or higher
 - pkg-config
 - GCC
 - intltool
 
If you're using a Debian-based Linux distribution you will need to apt-get those
packages:
	- libgtk2.0-dev
	- libglib2.0-dev
	- build-essential
	- automake
	- autoconf
	- intltool

PS: If you want to compile the documentation you will need to install Doxygen.

UNIX/LINUX
----------

Download a tarball from http://beaver-editor.sourceforge.net/ and extract the
contents to a folder. A beaver-X.Y.Z folder will be created (X, Y and Z are
the version numbers), go inside that folder using your preferred terminal and
run "./configure" to prepare the build environment. Using the configure script
you can setup Beaver to fit your needs (run "./configure --help" to see the
options). Run "make" and "make install" to compile and install Beaver onto your
computer.

Enjoy!

In a nutshell, the recommended method is:
$ tar -xzf beaver-X.Y.Z.tar.gz
$ cd beaver-X.Y.Z
$ ./configure
$ make
$ sudo make install

UNIX/LINUX - From GIT
---------------------

$ git clone git://beaver-editor.git.sourceforge.net/gitroot/beaver-editor/beaver-editor  
$ cd beaver-editor
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

WINDOWS
-------

Still experimental... and probably always will!

COMPILE DOCUMENTATION
---------------------

$ make doc

