File: Makefile.PL

package info (click to toggle)
libcrypt-rsa-parse-perl 0.043-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 144 kB
  • ctags: 34
  • sloc: perl: 251; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,035 bytes parent folder | download | duplicates (3)
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
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Crypt::RSA::Parse',
    VERSION_FROM => 'lib/Crypt/RSA/Parse.pm',    # finds \$VERSION
    AUTHOR       => 'Felipe Gasper (FELIPE)',
    ABSTRACT     => 'Parse RSA keys',
    PREREQ_PM    => {
        'Convert::ASN1'         => 0.27,
        'Crypt::Format'         => 0.06,
        'MIME::Base64'          => 3.15,
        'Class::Accessor::Fast' => 0.34,
        'parent'                => 0,
    },
    TEST_REQUIRES => {
        'Test::Simple' => 0.44,
        'Test::NoWarnings' => 0.01,
        'Test::More' => 0.01,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources   => {
            repository => {
                type => 'git',
                url  => 'https://github.com/FGasper/p5-Crypt-RSA-Parse.git',
                web  => 'https://github.com/FGasper/p5-Crypt-RSA-Parse',
            },
        },
    },
);