forked from garu/Net-Zendesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (28 loc) · 926 Bytes
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %options = (
NAME => 'Net::Zendesk',
AUTHOR => 'Breno G. de Oliveira <[email protected]>',
VERSION_FROM => 'lib/Net/Zendesk.pm',
ABSTRACT_FROM => 'lib/Net/Zendesk.pm',
LICENSE => 'perl',
PL_FILES => {},
PREREQ_PM => {
'MIME::Base64' => 0,
'URI::Escape' => 0,
'Furl' => 0,
'IO::Socket::SSL' => 0,
'Test::More' => 0.88,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/garu/Net-Zendesk/issues/',
repository => 'https://github.com/garu/Net-Zendesk',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-Zendesk-*' },
);
WriteMakefile( %options );