ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-IRC3/Makefile.PL
Revision: 1.2
Committed: Sun Jul 16 11:50:58 2006 UTC (17 years, 10 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.1: +1 -0 lines
Log Message:
added AnyEvent dependency to Makefile.PL and documented it.

File Contents

# Content
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6 NAME => 'Net::IRC3',
7 AUTHOR => 'Robin Redeker <elmex@ta-sa.org>',
8 VERSION_FROM => 'lib/Net/IRC3.pm',
9 ABSTRACT_FROM => 'lib/Net/IRC3.pm',
10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
13 'AnyEvent' => 0,
14 },
15 dist => {
16 COMPRESS => 'gzip -9f',
17 SUFFIX => 'gz',
18 PREOP => 'pod2text lib/Net/IRC3.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
19 },
20 clean => { FILES => 'Net-IRC3-*' },
21 );