File: Makefile.PL

package info (click to toggle)
libdata-entropy-perl 0.008-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 280 kB
  • sloc: perl: 890; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,235 bytes parent folder | download
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
32
33
34
35
36
37
38
39
40
41
42
43

require 5.006;

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'          => 'Data::Entropy',
    'AUTHOR'        => 'Robert Rothenberg <rrwo@cpan.org>',
    'ABSTRACT_FROM' => 'lib/Data/Entropy.pm',
    'VERSION_FROM'  => 'lib/Data/Entropy.pm',
    'PREREQ_PM'     => {
        'Carp'             => 0,
        'Crypt::Rijndael'  => 0,
        'Crypt::URandom'   => '0.36',
        'Data::Float'      => '0.008',
        'Errno'            => '1.00',
        'Exporter'         => 0,
        'HTTP::Lite'       => '2.2',
        'IO::File'         => '1.03',
        'Module::Build'    => 0,
        'Params::Classify' => 0,
        'Test::More'       => 0,
        'constant'         => 0,
        'integer'          => 0,
        'parent'           => 0,
        'strict'           => 0,
        'warnings'         => 0
    },
    TEST_REQUIRES => {
        'Test::More' => 0,
    },
    'INSTALLDIRS' => 'site',
    'EXE_FILES'   => [],
    'PL_FILES'    => {},
    'SIGN'        => 1,
    'META_MERGE'  => {
        x_deprecated => 1,
        resources    => {
            repository => 'git://github.com/robrwo/Data-Entropy.git',
            bugtracker => 'https://github.com/robrwo/Data-Entropy/issues',
        },
    }
);