ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-IRC3/Makefile.PL
Revision: 1.3
Committed: Sun Feb 25 10:58:59 2007 UTC (17 years, 3 months ago) by elmex
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -0 lines
Log Message:
raised kwalitee score and raised coverage of the tests a bit.

File Contents

# User Rev Content
1 elmex 1.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 elmex 1.3 LICENSE => 'perl',
9 elmex 1.1 VERSION_FROM => 'lib/Net/IRC3.pm',
10     ABSTRACT_FROM => 'lib/Net/IRC3.pm',
11     PL_FILES => {},
12     PREREQ_PM => {
13     'Test::More' => 0,
14 elmex 1.2 'AnyEvent' => 0,
15 elmex 1.1 },
16     dist => {
17     COMPRESS => 'gzip -9f',
18     SUFFIX => 'gz',
19     PREOP => 'pod2text lib/Net/IRC3.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
20     },
21     clean => { FILES => 'Net-IRC3-*' },
22     );