File: Prereq.pm

package info (click to toggle)
libmodule-cpanfile-perl 1.1004-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 531; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Module::CPANfile::Prereq;
use strict;

sub new {
    my($class, %options) = @_;
    bless \%options, $class;
}

sub feature { $_[0]->{feature} }
sub phase   { $_[0]->{phase} }
sub type    { $_[0]->{type} }
sub module  { $_[0]->{module} }
sub requirement { $_[0]->{requirement} }

1;