CPAN::Patches::Plugin::Debian::SPc - Debian specific folders


CPAN-Patches-Plugin-Debian documentation Contained in the CPAN-Patches-Plugin-Debian distribution.

Index


Code Index:

NAME

Top

CPAN::Patches::Plugin::Debian::SPc - Debian specific folders

PATHS

Top

prefix

sharedstatedir

Used to store Debian patch set and svn trunk


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;