-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
30 lines (28 loc) · 1014 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
######################################################################
# Makefile.PL for Git::Meta
# 2011, Mike Schilli <[email protected]>
######################################################################
use ExtUtils::MakeMaker;
my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/gitmeta',
},
}
};
WriteMakefile(
'NAME' => 'GitMeta',
'VERSION_FROM' => 'lib/GitMeta.pm', # finds $VERSION
'EXE_FILES' => ["eg/gitmeta-update"],
'PREREQ_PM' => {
Sysadm::Install => 0.37,
Log::Log4perl => 1.0,
Pithub => 0.01016,
File::Temp => 0.22,
YAML => 0.71,
}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/GitMeta.pm',
AUTHOR => 'Mike Schilli <[email protected]>') : ()),
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
);