To compile and install:

* First make sure you have kde4 installed (kdelibs4, kdebase4, kdepimlibs4) and all of his
  dependencies (qt4...).
  
* The basic instructions are:

  cd trunk
  mkdir build
  cd build
  cmake -DCMAKE_INSTALL_PREFIX=/opt/kde4 ..  #here you put your path to kde4.
  make
  su
  make install
  
  Now, copy the lemonrc file to your local .kde/share/config directory:
  
  cp trunk/src/lemonrc /home/USER/.kde/share/config/ #Replace USER with your username.
  
* After installation, you need to create a database and user on mysql, to do this:

  cd trunk/database_resources
  cat lemon_mysql.sql | mysql -u root -p
  
* If you want to create some demo products, do:

  mysqlimport -u root -p -v -L lemondb trunk/database_resources/*.txt
  
  Note: if you got an error, try changing the group and user for the products file to mysql:mysql
  
* To start using lemon, type 

  lemon --style=oxygen 
  
  If for any reason lemon binary is not found, and if your kde4 install path is /opt/kde4 do:
  
  /opt/kde4/bin/lemon --style=oxygen
  
 * The default and only user and password is (without quotes):
 
   username: "admin"
   password: "linux"
