diff options
author | ivan <ivan> | 2008-06-16 07:07:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-16 07:07:35 +0000 |
commit | 1ed8df25cb58e83f7470c714062a946b8d19ae07 (patch) | |
tree | edbcbf0b6d9d12f69fc3fb77753bd713d98c5cc9 /Makefile.PL |
initial import...START
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..a866c34 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,18 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Net::GlobalPOPs::MediaServicesAPI', + AUTHOR => 'Ivan Kohler <ivan-net-globalpops@freeside.biz>', + VERSION_FROM => 'lib/Net/GlobalPOPs/MediaServicesAPI.pm', + ABSTRACT_FROM => 'lib/Net/GlobalPOPs/MediaServicesAPI.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'XML::Simple' => 0, + 'XML::Writer' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Net-GlobalPOPs-MediaServicesAPI-*' }, +); |