initial commit that actually works
[Geo-Melissa-WebSmart.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME                => 'Geo::Melissa::WebSmart',
8     AUTHOR              => q{Mark Wells <mark@freeside.biz>},
9     VERSION_FROM        => 'WebSmart.pm',
10     ABSTRACT_FROM       => 'WebSmart.pm',
11     ($ExtUtils::MakeMaker::VERSION >= 6.3002
12       ? ('LICENSE'=> 'perl')
13       : ()),
14     PL_FILES            => {},
15     PREREQ_PM => {
16         'Test::More'     => 0,
17         'XML::LibXML'    => 2,
18         'LWP::UserAgent' => 0,
19     },
20     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
21     clean               => { FILES => 'Geo-Melissa-WebSmart-*' },
22 );