File: Installation.pm

package info (click to toggle)
perlbrew 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 744 kB
  • sloc: perl: 9,241; makefile: 7; sh: 1
file content (31 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (4)
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
31
use strict;
use warnings;

package App::Perlbrew::Path::Installation;

require App::Perlbrew::Path;

our @ISA = qw( App::Perlbrew::Path );

sub name {
    $_[0]->basename;
}

sub bin {
    shift->child(bin => @_);
}

sub man {
    shift->child(man => @_);
}

sub perl {
    shift->bin('perl');
}

sub version_file {
    shift->child('.version');
}

1;