-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (30 loc) · 851 Bytes
/
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
use ExtUtils::MakeMaker;
BEGIN {
eval { require ExtUtils::MakeMaker::Coverage; };
ExtUtils::MakeMaker::Coverage->import unless $@;
}
WriteMakefile(
NAME => 'Lingua::LO::NLP',
VERSION_FROM => 'lib/Lingua/LO/NLP.pm',
AUTHOR => 'Matthias Bethke <[email protected]>',
ABSTRACT => 'Various language processing functions for Lao text',
MIN_PERL_VERSION => '5.012000',
PREREQ_PM => {
version => 0.77,
Carp => 0,
charnames => 0,
'Unicode::Normalize' => 0,
'Class::Accessor::Fast' => 0,
'List::Util' => 1.33,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Test::Fatal' => 0,
'Try::Tiny' => 0,
},
dist => {
COMPRESS => 'bzip2',
SUFFIX => '.bz2',
},
LICENSE => 'perl',
);