-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
28 lines (27 loc) · 779 Bytes
/
Makefile.PL
File metadata and controls
28 lines (27 loc) · 779 Bytes
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
use 5.008004;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Crypto::CoinGecko',
VERSION_FROM => 'lib/Crypto/CoinGecko.pm',
ABSTRACT_FROM => 'lib/Crypto/CoinGecko.pm',
AUTHOR => 'Randy J',
LICENSE => 'freebsd',
MIN_PERL_VERSION => '5.008004',
#EXE_FILES => ['script/foo'],
PREREQ_PM => {
'strict' => 0,
'warnings' => 0,
'DateTime' => '0.37',
},
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/rjheeta/CoinGecko.git',
web => 'https://github.com/rjheeta/CoinGecko',
},
}})
: ()
),
);