File: Makefile.PL

package info (click to toggle)
libmaxmind-db-reader-perl 1.000013-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,516 kB
  • sloc: perl: 1,577; makefile: 10
file content (129 lines) | stat: -rw-r--r-- 3,315 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
125
126
127
128
129
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
use strict;
use warnings;

use 5.010000;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Read MaxMind DB files and look up IP addresses",
  "AUTHOR" => "Dave Rolsky <drolsky\@maxmind.com>, Olaf Alders <oalders\@maxmind.com>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "MaxMind-DB-Reader",
  "EXE_FILES" => [
    "bin/mmdb-dump-metadata",
    "bin/mmdb-dump-search-tree"
  ],
  "LICENSE" => "artistic_2",
  "MIN_PERL_VERSION" => "5.010000",
  "NAME" => "MaxMind::DB::Reader",
  "PREREQ_PM" => {
    "Carp" => 0,
    "Data::IEEE754" => 0,
    "Data::Printer" => 0,
    "Data::Validate::IP" => "0.25",
    "DateTime" => 0,
    "Encode" => 0,
    "Getopt::Long" => 0,
    "List::AllUtils" => 0,
    "Math::BigInt" => 0,
    "MaxMind::DB::Common" => "0.040001",
    "MaxMind::DB::Metadata" => 0,
    "MaxMind::DB::Role::Debugs" => 0,
    "MaxMind::DB::Types" => 0,
    "Module::Implementation" => 0,
    "Moo" => "1.003000",
    "Moo::Role" => 0,
    "MooX::StrictConstructor" => 0,
    "Role::Tiny" => "1.003002",
    "Socket" => "1.87",
    "autodie" => 0,
    "bytes" => 0,
    "constant" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Exporter" => 0,
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Path::Class" => "0.27",
    "Scalar::Util" => "1.42",
    "Test::Bits" => 0,
    "Test::Fatal" => 0,
    "Test::MaxMind::DB::Common::Data" => 0,
    "Test::MaxMind::DB::Common::Util" => 0,
    "Test::More" => "0.96",
    "Test::Number::Delta" => 0,
    "Test::Requires" => 0,
    "lib" => 0,
    "utf8" => 0
  },
  "VERSION" => "1.000013",
  "test" => {
    "TESTS" => "t/*.t t/MaxMind/DB/*.t t/MaxMind/DB/Reader/*.t t/MaxMind/DB/Reader/Decoder-types/*.t"
  }
);


my %FallbackPrereqs = (
  "Carp" => 0,
  "Data::IEEE754" => 0,
  "Data::Printer" => 0,
  "Data::Validate::IP" => "0.25",
  "DateTime" => 0,
  "Encode" => 0,
  "Exporter" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Getopt::Long" => 0,
  "List::AllUtils" => 0,
  "Math::BigInt" => 0,
  "MaxMind::DB::Common" => "0.040001",
  "MaxMind::DB::Metadata" => 0,
  "MaxMind::DB::Role::Debugs" => 0,
  "MaxMind::DB::Types" => 0,
  "Module::Implementation" => 0,
  "Moo" => "1.003000",
  "Moo::Role" => 0,
  "MooX::StrictConstructor" => 0,
  "Path::Class" => "0.27",
  "Role::Tiny" => "1.003002",
  "Scalar::Util" => "1.42",
  "Socket" => "1.87",
  "Test::Bits" => 0,
  "Test::Fatal" => 0,
  "Test::MaxMind::DB::Common::Data" => 0,
  "Test::MaxMind::DB::Common::Util" => 0,
  "Test::More" => "0.96",
  "Test::Number::Delta" => 0,
  "Test::Requires" => 0,
  "autodie" => 0,
  "bytes" => 0,
  "constant" => 0,
  "lib" => 0,
  "namespace::autoclean" => 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) };

if ( $^O eq 'MSWin32' ) {
	$WriteMakefileArgs{PREREQ_PM}{'Socket'} = '2.019';
}

WriteMakefile(%WriteMakefileArgs);