ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-Bummskraut/Makefile.PL
Revision: 1.2
Committed: Sun Mar 4 23:46:05 2007 UTC (17 years, 4 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.1: +1 -0 lines
Log Message:
added binaries now and made them installable.

File Contents

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