ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.4
Committed: Wed Mar 7 17:24:08 2007 UTC (17 years, 4 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.3: +4 -0 lines
Log Message:
added logging support, added server password support,
added display of notices again.

File Contents

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