Views
id3lib is a C library for reading and writing ID3 tags in MP3 files.
Installation
Normally, to install it as root on a Unix machine, you would just type:
/path/to/your/zope/python setup.py install
But it can be a bit tricky to set up on Debian Woody because Woody does not come with the latest gcc-3.0 and libstdc++ libraries.
After you have installed gcc-3.0 and libstdc++-dev, then you must make sure your environment is set up like this:
export CC=/usr/bin/gcc-3.0 export CXX=/usr/bin/g++-3.0 export CFLAGS=-I/usr/include/g++-v3 env