Cpan-Distroprefs

CPAN::Distroprefs(3p) Perl Programmers Reference Guide CPAN::Distroprefs(3p)

Cpan-Distroprefs

CPAN::Distroprefs(3p) Perl Programmers Reference Guide CPAN::Distroprefs(3p) # CPAN::Distroprefs(3p) Perl Programmers Reference Guide CPAN::Distroprefs(3p) NNAAMMEE # CPAN::Distroprefs -- read and match distroprefs SSYYNNOOPPSSIISS # use CPAN::Distroprefs; my %info = (... distribution/environment info ...); my $finder = CPAN::Distroprefs->find($prefs_dir, \%ext_map); while (my $result = $finder->next) { die $result->as_string if $result->is_fatal; warn($result->as_string), next if $result->is_warning; for my $pref (@{ $result->prefs }) { if ($pref->matches(\%info)) { return $pref; } } } DDEESSCCRRIIPPTTIIOONN # This module encapsulates reading Distroprefs and matching them against CPAN distributions. ...