Requirements
=======================

To build Pino use next libraries and utilities:
  * valac (>=0.7.10)
  * gcc (>=4.2)
  * intltool
  * gettext
  * gtk+-2.0
  * libgee (>=0.5.0)
  * gio-2.0
  * libnotify
  * libsoup-2.4
  * libxml-2.0
  * webkit-1.0
  * libunique-1.0
  * libgtkspell
  * libindicate (optional)

You must install dev-packages for this libraries to build Pino.


Building with WAF
=======================

Pino uses a WAF build system. To build and install Pino use this commands:

    ./waf configure --prefix=/usr
    ./waf build
    sudo ./waf install

For uninstalling type this:

    sudo ./waf uninstall


Building with Cmake
=======================

Now you can build Pino with Cmake build system:

    mkdir build
    cd build
    cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DUBUNTU_ICONS=OFF -DENABLE_DEBUG=OFF
    make
    sudo make install

For uninstalling type this:

    sudo make uninstall
