forked from briandfoy/test-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
45 lines (36 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
43
44
use ExtUtils::MakeMaker 6.48;
require 5.006;
eval "use Test::Manifest 1.21";
WriteMakefile(
'NAME' => 'Test::File',
'ABSTRACT' => 'Check file attributes',
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
'VERSION_FROM' => 'lib/Test/File.pm',
'PREREQ_PM' => {
'Test::More' => '0.95',
'Test::Builder::Tester' => '1.04',
'Test::Builder' => '0.33',
'Test::Manifest' => '1.14',
},
META_ADD => {
no_index => {
package => [ qw( version Local ) ],
directory => [ qw( t/inc inc ) ],
file => [ qw( t/lib/test.pm ) ],
namespace => [ qw( Local ) ],
},
},
META_MERGE => {
'meta-spec' => { version => 2 },
keywords => ['testing','file'],
resources => {
repository => {
type => 'git',
url => 'git://github.com/briandfoy/test-file.git',
web => 'https://github.com/briandfoy/test-file',
},
},
},
clean => { FILES => q|Test-File-* test_files| },
);