forked from drmuey/p5-File-Copy-Recursive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
30 lines (27 loc) · 942 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
# eval q{
# use File::ShareDir::Install 0.07;
# delete_share '.'; # delete it all first
# install_share 'share'; # install the current version second
# *MY::postamble = \&File::ShareDir::Install::postamble;
# };
# warn "-- share/ will not be installed --\n\t$@\n-- end sharedir error --\n" if $@;
WriteMakefile(
NAME => 'File::Copy::Recursive',
AUTHOR => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
VERSION_FROM => 'lib/File/Copy/Recursive.pm',
ABSTRACT_FROM => 'lib/File/Copy/Recursive.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Exception' => 0,
'File::Temp' => 0,
# Legacy only
'File::Copy' => 0,
'File::Spec' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'File-Copy-Recursive-*' },
);