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, 2 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

# 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 LICENSE => 'perl',
9 VERSION_FROM => 'lib/Net/IRC3.pm',
10 ABSTRACT_FROM => 'lib/Net/IRC3.pm',
11 PL_FILES => {},
12 PREREQ_PM => {
13 'Test::More' => 0,
14 'AnyEvent' => 0,
15 },
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 );