|
Revision 21703, 0.9 kB
(checked in by ktat, 5 years ago)
|
|
remove copies
|
| Line | |
|---|
| 1 | use strict; |
|---|
| 2 | use warnings; |
|---|
| 3 | use ExtUtils::MakeMaker; |
|---|
| 4 | |
|---|
| 5 | WriteMakefile( |
|---|
| 6 | NAME => 'Helper::Simple', |
|---|
| 7 | AUTHOR => 'Ktat <KTAT@cpan.org>', |
|---|
| 8 | VERSION_FROM => 'lib/Helper/Simple.pm', |
|---|
| 9 | ABSTRACT_FROM => 'lib/Helper/Simple.pm', |
|---|
| 10 | PL_FILES => {}, |
|---|
| 11 | PREREQ_PM => { |
|---|
| 12 | 'Test::More' => 0, |
|---|
| 13 | 'Scalar::Util' => 0, |
|---|
| 14 | 'File::Slurp' => 0, |
|---|
| 15 | 'Archive::Zip' => 0, |
|---|
| 16 | 'Data::Dumper' => 0, |
|---|
| 17 | 'IO::File' => 0, |
|---|
| 18 | 'Template' => 0, |
|---|
| 19 | 'Tie::Hash::Indexed' => 0, |
|---|
| 20 | 'Term::ProgressBar' => 0, |
|---|
| 21 | 'Cwd' => 0, |
|---|
| 22 | 'LWP::UserAgent' => 0, |
|---|
| 23 | 'IO::String' => 0, |
|---|
| 24 | 'File::NCopy' => 0, |
|---|
| 25 | 'Module::Pluggable' => 0, |
|---|
| 26 | 'File::Where' => 0, |
|---|
| 27 | 'Config' => 0, |
|---|
| 28 | }, |
|---|
| 29 | dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, |
|---|
| 30 | clean => { FILES => 'Helper-Simple-*' }, |
|---|
| 31 | ); |
|---|
| 32 | |
|---|