-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.PL
46 lines (45 loc) · 1.32 KB
/
Makefile.PL
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 <[email protected]>'],
'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
}
}
}
}
);