aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: e7728d09bca8958bc0a5c2efd092c7cc32f33efe (plain) (blame)
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
44
45
46
47
48
49
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    (MM->can('signature_target') ? (SIGN => 1) : ()),
    NAME             => 'Mail::Run::Crypt',
    AUTHOR           => q{Tom Ryder <tom@sanctum.geek.nz>},
    VERSION_FROM     => 'lib/Mail/Run/Crypt.pm',
    ABSTRACT_FROM    => 'lib/Mail/Run/Crypt.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => '5.008_001',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '0',
    },
    BUILD_REQUIRES => {
        'Test::More' => '0',
    },
    PREREQ_PM => {
        'Carp'                      => 0,
        'English'                   => 0,
        'Getopt::Long::Descriptive' => 0,
        'IPC::Run3'                 => 0,
        'Mail::GnuPG'               => 0,
        'MIME::Entity'              => 0,
    },
    EXE_FILES => ['bin/runcrypt'],
    META_MERGE => {
        'meta-spec' => { version => 2 },
        provides => {
            'Mail::Run::Crypt' => {
                version => '0.10',
                file => 'lib/Mail/Run/Crypt.pm',
            },
        },
        resources => {
            homepage => 'https://sanctum.geek.nz/cgit/Mail-Run-Crypt.git/',
            repository => {
                type => 'git',
                url => 'https://sanctum.geek.nz/code/Mail-Run-Crypt.git/',
                web => 'https://sanctum.geek.nz/cgit/Mail-Run-Crypt.git/',
            },
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Mail-Run-Crypt-*' },
);