File: System.pm

package info (click to toggle)
libcpanplus-perl 0.9910-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,240 kB
  • sloc: perl: 47,752; sh: 30; makefile: 13
file content (30 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
### minimal pod, so you can find it with perldoc -l, etc
=pod

=head1 NAME

CPANPLUS::Config::System - CPANPLUS configuration file for Debian systems

=head1 DESCRIPTION

This is a CPANPLUS configuration file that sets appropriate default
settings on Debian systems.

The only preconfigured settings are C<makemakerflags> (set to
C<INSTALLDIRS=site>) and C<buildflags> (set to C<--installdirs site>).

These settings will not have any effect if
C</etc/perl/CPANPLUS/Config/System.pm> is present.

=cut


package CPANPLUS::Config::System;

sub setup {
    my $conf = shift;
    $conf->set_conf( makemakerflags => 'INSTALLDIRS=site' );
    $conf->set_conf( buildflags => '--installdirs site' );
}

1;