-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.PL
50 lines (49 loc) · 1.41 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'TV::Mediathek',
AUTHOR => q{Robin Clarke <[email protected]>},
VERSION_FROM => 'lib/TV/Mediathek.pm',
ABSTRACT_FROM => 'lib/TV/Mediathek.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
EXE_FILES => [ 'bin/mediathekp' ],
PREREQ_PM => {
'Class::Date' => 0,
'DBD::SQLite' => 0,
'DBI' => 0,
'Data::Dumper' => 0,
'Encode' => 0,
'ExtUtils::MakeMaker' => 0,
'File::HomeDir' => 0,
'File::Spec::Functions' => 0,
'File::Util' => 0,
'Format::Human::Bytes' => 0,
'Getopt::Long' => 0,
'IO::Uncompress::AnyUncompress' => 0,
'Lingua::DE::ASCII' => 0,
'Log::Log4perl' => 0,
'Moose' => 0,
'MooseX::Log::Log4perl' => 0,
'Pod::Usage' => 0,
'Test::More' => 0,
'Video::Flvstreamer' => 0.03,
'WWW::Mechanize' => 0,
'XML::Twig' => 0,
'YAML::Any' => 0,
},
(! eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () :
(META_ADD => {
resources => {
homepage => 'https://github.com/robin13/mediathekp',
repository => 'https://github.com/robin13/mediathekp',
bugtracker => 'https://github.com/robin13/mediathekp/issues',
},
})
),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'TV-Mediathek-*' },
);