-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
31 lines (30 loc) · 1016 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;
WriteMakefile(
NAME => 'AnyEvent::XMPP',
AUTHOR => 'Robin Redeker <[email protected]>',
LICENSE => 'perl',
VERSION_FROM => 'lib/AnyEvent/XMPP.pm',
ABSTRACT_FROM => 'lib/AnyEvent/XMPP.pm',
PL_FILES => {},
PREREQ_PM => {
'AnyEvent' => 0,
'AnyEvent::Socket' => 0,
'AnyEvent::Handle' => 0,
'Scalar::Util' => 0,
'XML::Writer' => 0,
'XML::Parser::Expat' => 0,
'MIME::Base64' => 0,
'Net::LibIDN' => 0,
'Authen::SASL' => 0,
'Digest::SHA1' => 0,
'Object::Event' => 0.7,
},
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
PREOP => 'pod2text lib/AnyEvent/XMPP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
},
clean => { FILES => 'AnyEvent-XMPP-*' },
);