1. Creating deb from sources:
    * Open Terminal on your device/computer and change directory into project folder.
    * run: 
        run-standalone.sh python2.5 build.py
    * press enter twice=)
    * Once this is done successfully, your folder will contain three new files, e.g.
           *.changes (the changelog)
           *.dsc (the package description)
           *.tar.gz (the packed source files) 
    * create new directory and move this files to it.
    * change directory to directory with created files
    * run: 
        dpkg-source -x scribo_0.2.*.dsc 
    * go to directory with extracted files
    * run: 
        dpkg-buildpackage -rfakeroot
        
        
2. Installation of package.
    * Downlod scribo's deb on your device.
    * Open Terminal on your device
    * login as root
        If uoy haven't rootsh you must install it from application manager, and 
        after that run:
            sudo gainroot
    * install dependences:
        apt-get update
        apt-get install python
        apt-get install sqlite3
        apt-get install python-xml
        apt-get install python2.5-qt4
        apt-get install python2.5-qt4-webkit
        apt-get install python2.5-qt4-gui
        apt-get install python-dbus
   * install scribo package:
        dpkg -i scribo*.deb

    
