File: Makefile.PL

package info (click to toggle)
mhonarc 2.6.24-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,020 kB
  • sloc: perl: 280,086; makefile: 11
file content (46 lines) | stat: -rw-r--r-- 1,347 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
44
45
46
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'         => 'MHonArc',
    'VERSION_FROM' => 'lib/mhamain.pl',
    'AUTHOR'       => ['Earl Hood <mhonarc@mhonarc.org>'],
    'ABSTRACT'     => 'Convert mail/news messages to HTML',
    'EXE_FILES'    => [
        'mha-dbedit',
        'mha-dbrecover',
        'mha-decode',
        'mhonarc'
    ],
    'LICENSE'       => 'gpl_2',
    'PREREQ_PM'     => {
        'Fcntl'            => 0,
        'File::Basename'   => 0,
        'Getopt::Long'     => 0,
        'Symbol'           => 0,
        'Time::Local'      => 0
    },
    'META_MERGE'    => {
        "meta-spec" => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/sympa-community/mhonarc.git',
                web  => 'https://github.com/sympa-community/mhonarc'
            },
            bugtracker => {
                web  => 'https://github.com/sympa-community/mhonarc/issues'
            }
        },
        prereqs => {
            runtime => {
                recommends => {
                    'Digest::MD5'  => 0,
                    'Encode'       => 0,
                    'File::Temp'   => 0,
                    'MIME::Base64' => 0,
                    'POSIX'        => 0
                }
            }
        }
    }
);