ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.6
Committed: Sat Mar 24 11:15:03 2007 UTC (17 years, 4 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.5: +1 -1 lines
Log Message:
replaced JSON::Syck by JSON::XS

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