-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
24 lines (22 loc) · 767 Bytes
/
Makefile.PL
File metadata and controls
24 lines (22 loc) · 767 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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile
(
'NAME' => 'Lingua::EN::NameParse',
'VERSION_FROM' => 'lib/Lingua/EN/NameParse.pm',
'ABSTRACT' => "extract the components of a person or couples full name, presented as a text string",
'AUTHOR' => 'Kim Ryan',
'LICENSE' => 'perl',
'PREREQ_PM' => { 'Parse::RecDescent' => 0 },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/dwimperl/Task-DWIM.git',
web => 'https://github.com/dwimperl/Task-DWIM',
},
},
}
);