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