ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-XMPP2/Makefile.PL
Revision: 1.4
Committed: Fri Jul 20 20:41:48 2007 UTC (16 years, 10 months ago) by elmex
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -0 lines
Log Message:
lots of changes. added as_string to Net::XMPP2::Node to restore
the original xml document part of a stanza or subtree.
also implemented the jabber component protocol.

File Contents

# User Rev Content
1 elmex 1.1 use strict;
2     use warnings;
3     use ExtUtils::MakeMaker;
4    
5     WriteMakefile(
6     NAME => 'Net::XMPP2',
7     AUTHOR => 'Robin Redeker <elmex@ta-sa.org>',
8 elmex 1.3 LICENSE => 'perl',
9 elmex 1.1 VERSION_FROM => 'lib/Net/XMPP2.pm',
10     ABSTRACT_FROM => 'lib/Net/XMPP2.pm',
11     PL_FILES => {},
12     PREREQ_PM => {
13     'AnyEvent' => 0,
14     'XML::Writer' => 0,
15     'XML::Parser::Expat' => 0,
16     'MIME::Base64' => 0,
17     'Net::LibIDN' => 0,
18     'Authen::SASL' => 0,
19 elmex 1.2 'Net::SSLeay' => 0,
20 elmex 1.1 'Net::DNS' => 0,
21 elmex 1.4 'Digest::SHA1' => 0,
22 elmex 1.1 },
23     dist => {
24     COMPRESS => 'gzip -9f',
25     SUFFIX => 'gz',
26     PREOP => 'pod2text lib/Net/XMPP2.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
27     },
28     clean => { FILES => 'Net-XMPP2-*' },
29     );