File: Makefile.PL

package info (click to toggle)
libcassandra-client-perl 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: perl: 3,898; ansic: 1,767; makefile: 3
file content (115 lines) | stat: -rw-r--r-- 2,684 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
# This Makefile.PL for Cassandra-Client was generated by
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.48.
# Don't edit it but the dist.ini and plugins used to construct it.

use strict;
use warnings;

use 5.010;
use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Perl library for accessing Cassandra using its binary network protocol",
  "AUTHOR" => "Tom van der Woerdt <tvdw\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Cassandra-Client",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010",
  "NAME" => "Cassandra::Client",
  "PREREQ_PM" => {
    "AnyEvent" => 0,
    "AnyEvent::XSPromises" => 0,
    "Clone" => "0.36",
    "Devel::GlobalDestruction" => "0.11",
    "EV" => 4,
    "Encode" => 0,
    "Exporter" => 0,
    "IO::Socket::INET" => 0,
    "IO::Socket::INET6" => 0,
    "List::Util" => 0,
    "Net::SSLeay" => "1.63",
    "Ref::Util" => "0.008",
    "Scalar::Util" => 0,
    "Socket" => 0,
    "Sub::Current" => 0,
    "Time::HiRes" => 0,
    "XSLoader" => 0,
    "constant" => 0,
    "if" => 0,
    "overload" => 0,
    "parent" => 0,
    "strict" => 0,
    "vars" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "AnyEvent" => 0,
    "Compress::LZ4" => 0,
    "Compress::Snappy" => 0,
    "Data::Dumper" => 0,
    "Devel::Cycle" => 0,
    "File::Basename" => 0,
    "Test::Exception" => 0,
    "Test::More" => 0,
    "lib" => 0
  },
  "VERSION" => "0.21",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

%WriteMakefileArgs = (
    %WriteMakefileArgs,
    OBJECT => '$(O_FILES)',
    TYPEMAPS => ['TYPEMAP'],
    INC => '-I.',
);

my %FallbackPrereqs = (
  "AnyEvent" => 0,
  "AnyEvent::XSPromises" => 0,
  "Clone" => "0.36",
  "Compress::LZ4" => 0,
  "Compress::Snappy" => 0,
  "Data::Dumper" => 0,
  "Devel::Cycle" => 0,
  "Devel::GlobalDestruction" => "0.11",
  "EV" => 4,
  "Encode" => 0,
  "Exporter" => 0,
  "File::Basename" => 0,
  "IO::Socket::INET" => 0,
  "IO::Socket::INET6" => 0,
  "List::Util" => 0,
  "Net::SSLeay" => "1.63",
  "Ref::Util" => "0.008",
  "Scalar::Util" => 0,
  "Socket" => 0,
  "Sub::Current" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,
  "Time::HiRes" => 0,
  "XSLoader" => 0,
  "constant" => 0,
  "if" => 0,
  "lib" => 0,
  "overload" => 0,
  "parent" => 0,
  "strict" => 0,
  "vars" => 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);