-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile.PL
40 lines (39 loc) · 1.19 KB
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'File::Copy::Recursive',
VERSION_FROM => 'lib/File/Copy/Recursive.pm',
ABSTRACT_FROM => 'lib/File/Copy/Recursive.pm',
AUTHOR => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
LICENSE => 'perl_5',
PREREQ_PM => {
'File::Copy' => 0,
'File::Spec' => 0,
'File::Glob' => 0,
'Cwd' => 0,
},
TEST_REQUIRES => {
'Test::More' => '0.88',
'Test::Deep' => 0,
'Test::File' => 0,
'File::Temp' => 0,
'Test::Warnings' => 0,
'Path::Tiny' => 0,
'Test::Fatal' => 0,
},
META_ADD => {
'meta-spec' => { version => 2 },
dynamic_config => 0,
resources => {
repository => {
url => 'https://github.com/drmuey/p5-File-Copy-Recursive.git',
web => 'https://github.com/drmuey/p5-File-Copy-Recursive',
type => 'git',
},
bugtracker => {
web => 'https://github.com/drmuey/p5-File-Copy-Recursive/issues',
},
},
},
);