ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-IRC3/Makefile.PL
Revision: 1.1
Committed: Sun Jul 16 02:09:12 2006 UTC (17 years, 11 months ago) by elmex
Content type: text/plain
Branch: MAIN
Log Message:
initial checkin

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