-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
42 lines (41 loc) · 1.15 KB
/
Copy pathMakefile.PL
File metadata and controls
42 lines (41 loc) · 1.15 KB
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
33
34
35
36
37
38
39
40
41
42
use 5.10.0;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'File::TVShow::Info',
AUTHOR => q{Adam Spann <bans@cpan.org>},
VERSION_FROM => 'lib/File/TVShow/Info.pm',
ABSTRACT_FROM => 'lib/File/TVShow/Info.pm',
LICENSE => 'perl_5',
PL_FILES => {},
MIN_PERL_VERSION => '5.10.0',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
},
PREREQ_PM => {
},
TEST_REQUIRES => {
'Test::More' => '0',
},
(eval { ExtUtils::MakeMaker->VERSION(6.46)} ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/Bas-Man/File-TVShow-Info.git',
web => 'https://github.com/Bas-Man/File-TVShow-Info',
},
bugtracker => {
web => 'https://github.com/Bas-Man/File-TVShow-Info/issues',
},
homepage => 'https://bas-man.github.io',
},
})
: ()
),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'File-TVShow-Info-*' },
);