ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.3
Committed: Wed Mar 7 12:18:25 2007 UTC (17 years, 4 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.2: +5 -5 lines
Log Message:
Renamed Net::Chat::JSON to Net::Bummskraut for a more unique release name.
Yay, google doesn't yet know 'bummskraut' :-)
Also added some documentation and lots of other stuff, eg.
backend-side configuration and lots of other stuff...

File Contents

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