blob: c6dbbc8577cce9913c7ec72ec87df17d3501cd53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::HTTPS::Any',
AUTHOR => 'Ivan Kohler <ivan-net-https-any@freeside.biz>',
VERSION_FROM => 'lib/Net/HTTPS/Any.pm',
ABSTRACT_FROM => 'lib/Net/HTTPS/Any.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'URI::Escape' => 0,
'Tie::IxHash' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-HTTPS-Any-*' },
);
|