forked from benkasminbullock/Lingua-EN-PluralToSingular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
27 lines (25 loc) · 748 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
use ExtUtils::MakeMaker;
my $pm = 'lib/Lingua/EN/PluralToSingular.pm';
my $pod = 'lib/Lingua/EN/PluralToSingular.pod';
my $repo = 'https://github.com/benkasminbullock/Lingua-EN-PluralToSingular';
WriteMakefile (
NAME => 'Lingua::EN::PluralToSingular',
VERSION_FROM => $pm,
ABSTRACT_FROM => $pod,
AUTHOR => 'Ben Bullock <[email protected]>',
LICENSE => 'perl',
PREREQ_PM => {
},
EXE_FILES => [
'scripts/singular',
],
META_MERGE => {
resources => {
repository => $repo,
bugtracker => "$repo/issues",
homepage => 'http://prepan.org/module/3Yz7PYrBN8',
}
},
# Passes 5.6.2 at CPANTESTERS as of version 0.10.
MIN_PERL_VERSION => '5.006001',
);