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

# 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 elmex 1.4 'AnyEvent' => 0,
15     'JSON::Syck' => 0,
16     'Curses' => 0,
17     'Term::ReadKey' => 0,
18 elmex 1.1 },
19     dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
20 elmex 1.3 clean => { FILES => 'Net-Bummskraut-*' },
21 elmex 1.1 );