forked from athenahealth/net-amqp-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.PL
58 lines (52 loc) · 1.59 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
install_share 'share';
WriteMakefile(
NAME => 'Net::AMQP::RabbitMQ::PP',
VERSION_FROM => 'lib/Net/AMQP/RabbitMQ/PP.pm',
AUTHOR => [
'Eugene Marcotte <[email protected]>',
'Lee Johnson <[email protected]>',
],
LICENSE => 'gpl_2',
MIN_PERL_VERSION => '5.10.1',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.52,
'File::ShareDir::Install' => 0.13,
},
PREREQ_PM => {
'Net::AMQP' => 0.06,
'List::MoreUtils' => 0.25,
'File::ShareDir' => 1.116,
'Try::Tiny' => 0.12,
'Socket::Linux' => 0.01,
},
TEST_REQUIRES => {
'Test::File::ShareDir' => 1.001001,
'Test::Most' => 0.31,
'Test::Exception' => 0.43,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/module/Net::AMQP::RabbitMQ::PP',
bugtracker => 'https://github.com/PayProp/net-amqp-rabbitmq/issues',
repository => 'https://github.com/PayProp/net-amqp-rabbitmq'
},
repository => {
type => 'git',
url => 'https://github.com/PayProp/net-amqp-rabbitmq.git',
web => 'https://github.com/PayProp/net-amqp-rabbitmq',
},
},
test => {
TESTS => 't/*.t t/*/*.t t/*/*/*.t',
RECURSIVE_TEST_FILES => 1,
},
);
package MY;
use File::ShareDir::Install qw/ postamble /;
# vim: ts=4:sw=4:et