1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
What's this?
~~~~~~~~~~~~~~
The cdcat is graphical (QT based) multiplatform (Linux/Windows)
catalog program which scans the directories/drives you want and memorize the
filesystem including the tags of mp3'sand other data and store it
in a small file.
The database is stored in a gzipped XML format, so you can hack it, or use
it if necessary :-)
And the program can store the content of some specified files up
to a limit size if you want. (for example: *.nfo)
Prerequisites:
~~~~~~~~~~~~~~~
- Trolltech Qt graphic library (ver >= 2.3.0)
/ http://www.trolltech.com /
- expat XML parsing library (ver >= 1.95.2)
/ http://expat.sourceforge.net /
- pcre Perl compatible regular expression library (ver >= 3.9)
/ ftp://ftp.csx.cam.uk/pub/software/programming/pcre/ /
- zlib data compression library (ver >= 1.1.4)
/ http://www.zlib.org /
You can find this as packages in all distributions,
but if you want to compile the cdcat you will have to install the
devel packages too.
Compiling:
~~~~~~~~~~
Unpack the source, and check te prerequisites!
If it is done, check or set the QTDIR envronment variable
(It must point the root directory of Qt.)
$export QTDIR=/usr/local/qt/
cd the "src" directory.
$cd src
then type: make
$make
If you got error messages try to check first the dependencies and the rights!
(before you send me bug report :-) )
If you even get errors try to generate your own makefile with "qmake cdcat.pro"
/the qmake utility is part of the QT library/
That case you didn't get errors type: make install to copy the files
to the necessary place.
#make install
Author:
~~~~~~~
see ./AUTHORS
The main program was written by Peter Deak (hungary)
E-mail: hyperr at freemail dot hu
Bug reports and questions:
~~~~~~~~~~~~~~~~~~~~~~~~~~
You can send your bug reports or any other questions or others to
the cdcat mailing list:
cdcat-list@lists.sourceforge.net
Homepage:
~~~~~~~~~
http://cdcat.sourceforge.net
|