ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.1
Committed: Sun Feb 25 00:21:03 2007 UTC (17 years, 5 months ago) by elmex
Content type: text/plain
Branch: MAIN
Log Message:
initial checkin

File Contents

# Content
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6 NAME => 'Net::Chat::JSON',
7 AUTHOR => 'Robin Redeker <elmex@ta-sa.org>',
8 VERSION_FROM => 'lib/Net/Chat/JSON.pm',
9 ABSTRACT_FROM => 'lib/Net/Chat/JSON.pm',
10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
13 },
14 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
15 clean => { FILES => 'Net-Chat-JSON-*' },
16 );