

# default build instruction (installation in /usr/local)

make clean
make
make install


# You can change installation directory by do this:
export PREFIX=/usr/local/listen/
make clean
make 
make install

# This is not longer need if you use python-webkitgtk (recommended)
# Instead, some distribution have python-gtkmozembed broken 
# that result to a segment fault when you click on wikipedia or lyrics tab
# On build step you can use a hack provide in the Makefile , intead of type make you can use:
   USE_GTKMOZEMBED=1 make
# or to force GTKMOZEMBED library path you can to:
   USE_GTKMOZEMBED=1 GTKMOZEMBED_PATH=/path/to/directorie/of/gtkmozembed.so make

# To disable depencies check you can use:
   CHECK_DEPENDS=0 make

