-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
32 lines (30 loc) · 831 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;
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',
},
x_contributors => [
'Xan Charbonnet',
'H2CHANG',
'Lisa Hare',
],
},
# Passes 5.6.2 at CPANTESTERS as of version 0.10.
MIN_PERL_VERSION => '5.006001',
);