/**************************************************************************************

        MUSTUXLIB - THE COMMON LIBRARY FOR ALL MUSTUX APPLICATIONS
        AUTHOR : See AUTHORS file for details

        This software is distributed under the terms of the GNU General Public License
        as specified in the COPYING file.

***************************************************************************************/


ABOUT THE MUSTUX PROJECT - http://www.freesoftware.fsf.org/mustux

The Mustux Project is a "Paradigm" Project that joins several subprojects following 2 principles

- Offer inovative and robust Audio/Video/Midi/Score Editing applications to GNU/Linux
- Offer new concepts in Human-computer interaction for such applications, through a engine called
  Jog Mouse Board (JMB)

MustuxLib is the library that is common to all mustux applications
The leader project in Mustux is Protux - A Free Professional Audio Tools for GNU/Linux.

Please , visit our web site for further informations

Thanks


HOW TO COMPILE / INSTALL MUSTUXLIB


- download libmustux source tarball (tar.gz file) and save it to a clean directory , for example /libmustux
	(well, if you are reading this README, maybe you already have it done right ;-)
- Make sure you have Qt libs and Qt devel packages installed. If you have a KDE desktop installed with its 
	*-devel packages installed, then you probably wont have any problem on this point.
- Enter this directory and unzip the tarball file (if you havent done it yet...)

    cd /libmustux <enter>
    tar -zxvf  protux-vvv.tar.gz <enter> (being vvv the version/release number)

- Compile libmustux 
  
  NOTE : if you have all qt-devel packages installed, but you still get problems in compilation,
check if you have QTDIR environment variable properly set. Usually it is done by
typing :
	export QTDIR=/usr/lib/qt2 or export QTDIr=/usr/lib/qt3

 
  First generate the configure script 
  
	make -f admin/Makefile.common 
  
  Now run it, to check all dependencies

 	 ./configure 

  then clean the last compilation (if applicable)

	  make clean 
   
  compile it

  	  make 
 
  and , as root, install it
  
          make install
	  
	  
Now you can go into the process of compiling a Mustux Application, such protux or mustache.



   
    

