-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (27 loc) · 792 Bytes
/
Makefile.PL
File metadata and controls
32 lines (27 loc) · 792 Bytes
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
#! /usr/bin/env perl
use v5.38;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'POPFile',
VERSION => '1.1.3',
ABSTRACT => 'POPFile email classifier',
AUTHOR => 'Jan Limpens <jan@limpens.com>',
MIN_PERL_VERSION => '5.038',
PREREQ_PM => {
'DBI' => '1.643',
'DBD::SQLite' => '1.00',
'Date::Format' => 0,
'Date::Parse' => 0,
'Digest::MD5' => 0,
'HTML::Tagset' => 0,
'HTML::Template' => 0,
'MIME::Base64' => 0,
'MIME::QuotedPrint' => 0,
'Object::Pad' => '0.800',
'Sort::Key::Natural' => 0,
},
TEST_REQUIRES => {
'Test2::V0' => 0,
},
# EXE_FILES => ['./popfile.pl'],
);