ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-XMPP2/Makefile.PL
Revision: 1.2
Committed: Wed Jul 4 16:29:06 2007 UTC (16 years, 11 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.1: +1 -0 lines
Log Message:
further documentation

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     VERSION_FROM => 'lib/Net/XMPP2.pm',
9     ABSTRACT_FROM => 'lib/Net/XMPP2.pm',
10     PL_FILES => {},
11     PREREQ_PM => {
12     'AnyEvent' => 0,
13     'XML::Writer' => 0,
14     'XML::Parser::Expat' => 0,
15     'MIME::Base64' => 0,
16     'Net::LibIDN' => 0,
17     'Authen::SASL' => 0,
18 elmex 1.2 'Net::SSLeay' => 0,
19 elmex 1.1 'Net::DNS' => 0,
20     },
21     dist => {
22     COMPRESS => 'gzip -9f',
23     SUFFIX => 'gz',
24     PREOP => 'pod2text lib/Net/XMPP2.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
25     },
26     clean => { FILES => 'Net-XMPP2-*' },
27     );