-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile.PL
More file actions
51 lines (50 loc) · 1.39 KB
/
Makefile.PL
File metadata and controls
51 lines (50 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use 5.006001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Text::Distill',
AUTHOR => q{Litres.ru <gu@litres.ru>},
VERSION_FROM => 'lib/Text/Distill.pm',
ABSTRACT_FROM => 'lib/Text/Distill.pm',
LICENSE => 'lgpl_3_0',
PL_FILES => {},
EXE_FILES => ['script/plagiarism_check.pl'],
MIN_PERL_VERSION => 5.006001,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
},
PREREQ_PM => {
'Digest::JHash' => 0,
'XML::LibXML' => 0,
'XML::LibXSLT' => 0,
'Text::Extract::Word' => 0,
'Archive::Zip' => 0,
'Carp' => 0,
'HTML::TreeBuilder' => 0,
'OLE::Storage_Lite' => 0,
'Text::Unidecode' => '1.27',
'Unicode::Normalize' => '1.25',
'Encode::Detect' => 0,
'Encode' => 0,
'LWP::UserAgent' => 0,
'JSON::XS' => 0,
'File::Temp' => 0,
'URI::Escape' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Text-Distill-*' },
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/Litres/TextDistill.git',
web => 'https://github.com/Litres/TextDistill',
},
}})
: ()
),
);