3 use SL::InstallationCheck;
 
   7 foreach my $module (@SL::InstallationCheck::required_modules) {
 
   8   print("Looking for $module->{name}...");
 
   9   if (!SL::InstallationCheck::module_available($module->{"name"})) {
 
  10     print(" NOT found\n" .
 
  11           "  The module '$module->{name}' is not available on your system.\n" .
 
  12           "  Please install it with the CPAN shell, e.g.\n" .
 
  13           "    perl -MCPAN -e \"install $module->{name}\"\n" .
 
  14           "  or download it from this URL and install it manually:\n" .
 
  15           "    $module->{url}\n\n");