-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.PL
60 lines (57 loc) · 1.88 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
55
56
57
58
59
60
use strict;
use warnings;
use ExtUtils::MakeMaker 6.48;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => "Gearman::Client",
DISTNAME => "Gearman",
AUTHOR => 'Brad Fitzpatrick <[email protected]>',
ABSTRACT =>
"Client and worker libraries for gearman job dispatch dispatch. Server is in separate package.",
VERSION_FROM => "lib/Gearman/Client.pm",
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008001',
BUILD_REQUIRES => {
"File::Which" => 0,
"IO::Socket::IP" => 0,
"IO::Socket::SSL" => 0,
"Perl::OSType" => 0,
"Proc::Guard" => "0.07",
"Storable" => 0,
"Test::Exception" => 0,
"Test::More" => 0,
"Test::TCP" => "2.17",
"Test::Timer" => 0,
"version" => "0.77",
},
PREREQ_PM => {
"Carp" => 0,
"IO::Select" => 0,
"IO::Socket::IP" => 0,
"IO::Socket::SSL" => 0,
"POSIX" => 0,
"Scalar::Util" => 0,
"Socket" => 0,
"Storable" => 0,
"String::CRC32" => 0,
"Time::HiRes" => 0, # Usually core now
"fields" => 0,
"version" => "0.77",
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker =>
{ web => 'https://github.com/p-alik/perl-Gearman/issues' },
repository => {
type => 'git',
url => 'https://github.com/p-alik/perl-Gearman.git',
web => 'https://github.com/p-alik/perl-Gearman',
},
},
},
dist => { COMPRESS => "gzip -9f", SUFFIX => "gz", },
clean => { FILES => "Gearman-Client-*" },
);
1;