-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
42 lines (40 loc) · 1.22 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
#!/usr/bin/env perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
my( $mm ) = $ExtUtils::MakeMaker::VERSION =~ /^([^_]+)/;
WriteMakefile(
NAME => 'SMS::Send::RU::SMS',
VERSION_FROM => 'lib/SMS/Send/RU/SMS.pm',
ABSTRACT_FROM => 'lib/SMS/Send/RU/SMS.pm',
AUTHOR => 'Sergey Romanov <[email protected]>',
PREREQ_PM => {
'SMS::Send' => '0',
'HTTP::Tiny' => '0',
'Digest::SHA' => '0',
},
( $mm >= 6.31
? ( LICENSE => 'artistic_2' )
: ()
),
( $mm < 6.46
? ()
: ( META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'http://github.com/sergeyromanov/sms-send-ru-sms',
bugtracker => 'http://github.com/sergeyromanov/sms-send-ru-sms/issues'
},
no_index => {directory => [qw/t xt examples/]},
},
META_ADD => {
build_requires => {},
configure_requires => {},
test_requires => {
'Test::More' => '0.47',
},
},
)
),
test => { TESTS => 't/*.t' }
);