-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
37 lines (36 loc) · 1.12 KB
/
Makefile.PL
File metadata and controls
37 lines (36 loc) · 1.12 KB
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mail::SpamAssassin::Plugin::FANN',
VERSION_FROM => 'lib/Mail/SpamAssassin/Plugin/FANN.pm',
ABSTRACT_FROM => 'lib/Mail/SpamAssassin/Plugin/FANN.pm',
AUTHOR => 'MXGuardian',
LICENSE => 'apache_2_0',
MIN_PERL_VERSION => '5.014',
EXE_FILES => [
'bin/sa-fann-train',
'bin/sa-fann-train-pytorch',
'bin/sa-fann-dump',
'bin/sa-fann-tokenize',
'bin/fann-test-accuracy',
],
PREREQ_PM => {
'Mail::SpamAssassin' => '4.0',
'AI::FANN' => 0,
'Storable' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/mxguardian/Mail-SpamAssassin-Plugin-FANN.git',
web => 'https://github.com/mxguardian/Mail-SpamAssassin-Plugin-FANN',
},
},
},
);