File: Makefile.PL

package info (click to toggle)
libclass-std-storable-perl 0.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 111; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Class::Std::Storable',
    AUTHOR              => 'Luke Meyer <luke@daeron.com>',
    VERSION_FROM        => 'lib/Class/Std/Storable.pm',
    ABSTRACT_FROM       => 'lib/Class/Std/Storable.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Class::Std' => '0.0.4',
        'Test::More' => 0,
        'version'    => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Class-Std-Storable-*' },
);