ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.7
Committed: Sun Jun 24 17:17:21 2007 UTC (17 years, 1 month ago) by elmex
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +1 -0 lines
Log Message:
implemented XMPP finally!

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::XS' => 0,
16 'Curses' => 0,
17 'Net::XMPP2' => 0,
18 'Term::ReadKey' => 0,
19 'Digest::HMAC_SHA1' => 0,
20 },
21 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
22 clean => { FILES => 'Net-Bummskraut-*' },
23 );