|
Revision 24376, 430 bytes
(checked in by charsbar, 5 years ago)
|
|
CGI-Carp-DebugScreen?: refactored and imported; will be shipped as 0.15 later (hopefully) soon; waiting for a few more tests and a bit more refactoring maybe
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use warnings; |
|---|
| 3 | use ExtUtils::MakeMaker; |
|---|
| 4 | |
|---|
| 5 | WriteMakefile( |
|---|
| 6 | NAME => 'CGI::Carp::DebugScreen', |
|---|
| 7 | AUTHOR => 'Kenichi Ishigaki <ishigaki@cpan.org>', |
|---|
| 8 | VERSION_FROM => 'lib/CGI/Carp/DebugScreen.pm', |
|---|
| 9 | ABSTRACT_FROM => 'lib/CGI/Carp/DebugScreen.pm', |
|---|
| 10 | PREREQ_PM => { |
|---|
| 11 | 'CGI::Carp' => 0, |
|---|
| 12 | 'Test::More' => '0.47', |
|---|
| 13 | }, |
|---|
| 14 | ($ExtUtils::MakeMaker::VERSION >= 6.31 |
|---|
| 15 | ? ( LICENSE => 'perl' ) |
|---|
| 16 | : () |
|---|
| 17 | ), |
|---|
| 18 | ); |
|---|