File: Makefile.PL

package info (click to toggle)
libgeoip2-perl 2.006001-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,148 kB
  • sloc: perl: 2,262; makefile: 10
file content (124 lines) | stat: -rw-r--r-- 3,112 bytes parent folder | download
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.010.
use strict;
use warnings;

use 5.008;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Perl API for MaxMind's GeoIP2 web services and databases",
  "AUTHOR" => "Dave Rolsky <drolsky\@maxmind.com>, Greg Oschwald <goschwald\@maxmind.com>, Mark Fowler <mfowler\@maxmind.com>, Olaf Alders <oalders\@maxmind.com>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "GeoIP2",
  "EXE_FILES" => [
    "bin/web-service-request"
  ],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008",
  "NAME" => "GeoIP2",
  "PREREQ_PM" => {
    "B" => 0,
    "Data::Dumper" => 0,
    "Data::Validate::IP" => "0.25",
    "Exporter" => 0,
    "Getopt::Long" => 0,
    "HTTP::Headers" => 0,
    "HTTP::Request" => 0,
    "JSON::MaybeXS" => 0,
    "LWP::Protocol::https" => 0,
    "LWP::UserAgent" => 0,
    "List::SomeUtils" => 0,
    "List::Util" => 0,
    "MIME::Base64" => 0,
    "MaxMind::DB::Reader" => "1.000000",
    "Moo" => 0,
    "Moo::Role" => 0,
    "Params::Validate" => 0,
    "Scalar::Util" => 0,
    "Sub::Quote" => 0,
    "Throwable::Error" => 0,
    "Try::Tiny" => 0,
    "URI" => 0,
    "lib" => 0,
    "namespace::clean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "HTTP::Response" => 0,
    "HTTP::Status" => 0,
    "IO::Compress::Gzip" => 0,
    "MaxMind::DB::Metadata" => 0,
    "Path::Class" => 0,
    "Test::Builder" => 0,
    "Test::Fatal" => 0,
    "Test::More" => "0.96",
    "Test::Number::Delta" => 0,
    "base" => 0,
    "utf8" => 0
  },
  "VERSION" => "2.006001",
  "test" => {
    "TESTS" => "t/*.t t/GeoIP2/*.t t/GeoIP2/Database/*.t t/GeoIP2/Error/*.t t/GeoIP2/Model/*.t t/GeoIP2/WebService/*.t"
  }
);


my %FallbackPrereqs = (
  "B" => 0,
  "Data::Dumper" => 0,
  "Data::Validate::IP" => "0.25",
  "Exporter" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Getopt::Long" => 0,
  "HTTP::Headers" => 0,
  "HTTP::Request" => 0,
  "HTTP::Response" => 0,
  "HTTP::Status" => 0,
  "IO::Compress::Gzip" => 0,
  "JSON::MaybeXS" => 0,
  "LWP::Protocol::https" => 0,
  "LWP::UserAgent" => 0,
  "List::SomeUtils" => 0,
  "List::Util" => 0,
  "MIME::Base64" => 0,
  "MaxMind::DB::Metadata" => 0,
  "MaxMind::DB::Reader" => "1.000000",
  "Moo" => 0,
  "Moo::Role" => 0,
  "Params::Validate" => 0,
  "Path::Class" => 0,
  "Scalar::Util" => 0,
  "Sub::Quote" => 0,
  "Test::Builder" => 0,
  "Test::Fatal" => 0,
  "Test::More" => "0.96",
  "Test::Number::Delta" => 0,
  "Throwable::Error" => 0,
  "Try::Tiny" => 0,
  "URI" => 0,
  "base" => 0,
  "lib" => 0,
  "namespace::clean" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);