-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (31 loc) · 1005 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
31
32
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::LastStats',
VERSION_FROM => 'lib/App/LastStats.pm',
ABSTRACT_FROM => 'lib/App/LastStats.pm',
AUTHOR => 'Dave Cross <dave@perlhacks.com>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.26.0',
PREREQ_PM => {
'Net::LastFM' => 0,
'Getopt::Long' => 0,
'JSON' => 0,
'Pod::Usage' => 0,
'Feature::Compat::Class' => 0.06,
($^V < v5.38 ? ('Object::Pad' => 0) : ()),
},
EXE_FILES => [ 'bin/laststats' ],
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/davorg-cpan/app-laststats.git',
web => 'https://github.com/davorg-cpan/app-laststats',
},
bugtracker => {
"web" => "https://github.com/davorg-cpan/app-laststats/issues"
}
},
},
);