forked from mschilli/archive-tar-wrapper-perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
28 lines (26 loc) · 994 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
######################################################################
# Makefile.PL for Archive::Tar::Wrapper
# 2005, Mike Schilli <[email protected]>
######################################################################
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/archive-tar-wrapper-perl',
},
}
};
WriteMakefile(
'NAME' => 'Archive::Tar::Wrapper',
'VERSION_FROM' => 'lib/Archive/Tar/Wrapper.pm', # finds $VERSION
'PREREQ_PM' => {
File::Temp => 0,
Cwd => 0,
Log::Log4perl => 0,
IPC::Run => 0,
}, # e.g., Module::Name => 1.1
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Archive/Tar/Wrapper.pm',
AUTHOR => 'Mike Schilli <[email protected]>') : ()),
);