forked from sgnix/Validate--Tiny
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
23 lines (22 loc) · 687 Bytes
/
Makefile.PL
File metadata and controls
23 lines (22 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Validate::Tiny',
AUTHOR => q{minimalist <minimalist@lavabit.com>},
VERSION_FROM => 'lib/Validate/Tiny.pm',
ABSTRACT_FROM => 'lib/Validate/Tiny.pm',
( $ExtUtils::MakeMaker::VERSION >= 6.3002
? ( 'LICENSE' => 'perl' )
: () ),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'List::MoreUtils' => 0
},
MIN_PERL_VERSION => '5.008',
test => { TESTS => q[t/*.t t/filters/*.t t/checks/*.t t/subs/*.t] },
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Validate-Tiny-*' },
);