File: Makefile.PL

package info (click to toggle)
libnet-https-any-perl 0.12-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 100 kB
  • ctags: 3
  • sloc: perl: 143; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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,
        # If you are aware of a way to declare an OR relation in prerequisites,
        # please tell me, you would be my hero.  it doesn't have to be EU:MM.
        # 'Net::SSLeay' => 0,
        # or 'Crypt::SSLeay' => 0,
        #    'LWP' => 0,

        #failing tests is worse, Net::SSLeay appears to finally have emerged
        # as best-practice with the release of LWP::Protocol::https that uses
        # IO::Socket::SSL and therefore Net::SSLeay
        'Net::SSLeay' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Net-HTTPS-Any-*' },
);