-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
54 lines (51 loc) · 1.44 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
51
52
53
54
use strict;
use warnings;
use ExtUtils::MakeMaker 6.46;
my $repo = "https://github.com/dleidert/Apache2-PhotoGal";
WriteMakefile(
NAME => 'Apache2::PhotoGal',
AUTHOR => q{Danial Leidert <dleidert@wgdd.de>},
VERSION_FROM => 'lib/Apache2/PhotoGal.pm',
ABSTRACT_FROM => 'lib/Apache2/PhotoGal.pm',
LICENSE => 'artistic',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
TEST_REQUIRES => {
'Test::More' => '0',
'Test::CheckManifest' => '0.9',
'Test::Pod' => '1.22',
'Test::Pod::Coverage' => '1.08',
'Data::Dumper' => '0',
},
PREREQ_PM => {
'Apache2::Reload' => '0',
'CGI' => '0',
'Data::Dumper' => '0',
'File::Basename' => '0',
'File::stat' => '0',
'Locale::TextDomain' => '0',
'Memoize' => '0',
'POSIX' => '0',
'Template' => '0',
},
META_MERGE => {
'meta-spec' => {
version => '2',
},
resources => {
repository => {
type => 'git',
url => $repo . '.git',
web => $repo,
},
bugtracker => {
web => $repo . '/issues',
mailto => 'dleidert@wgdd.de',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Apache2-PhotoGal-*' },
);