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