How to install perl modules

In order to check, whether a specific perl module is installed (e.g. Image::Info for this example) type:
perl -MImage::Info -e1 If it is not installed, download it from CPAN, untar, change into the install directory and install like this:
perl Makefile.PL
make
make test
and then as root:
make install