| CPAN-Patches-Plugin-Debian documentation | Contained in the CPAN-Patches-Plugin-Debian distribution. |
CPAN::Patches::Plugin::Debian::SPc - Debian specific folders
| CPAN-Patches-Plugin-Debian documentation | Contained in the CPAN-Patches-Plugin-Debian distribution. |
package CPAN::Patches::Plugin::Debian::SPc;
use warnings; use strict; our $VERSION = '0.01'; use File::Spec; sub _path_types {qw( sharedstatedir )};
sub prefix { use Sys::Path; Sys::Path->find_distribution_root(__PACKAGE__); }; sub sharedstatedir { File::Spec->catdir(__PACKAGE__->prefix, 'sharedstate') }; 1;