File: Makefile.PL

package info (click to toggle)
libnet-server-mail-perl 0.28-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 268 kB
  • sloc: perl: 1,299; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (4)
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
29
use ExtUtils::MakeMaker;

use strict;
use warnings;

WriteMakefile(
    'NAME'         => 'Net::Server::Mail',
    'VERSION_FROM' => 'lib/Net/Server/Mail.pm',
    'PREREQ_PM'    => {
        'Net::SMTP'       => 0,
        'IO::Socket::SSL' => '1.831',
    },
    'BUILD_REQUIRES' => { 'Test::Most' => 0, },
    (
        $] >= 5.005
        ? (
            ABSTRACT_FROM => 'lib/Net/Server/Mail.pm',
            AUTHOR        => 'Xavier Guimard <x.guimard@free.fr>'
          )
        : ()
    ),
    LICENSE => 'lgpl',
    MIN_PERL_VERSION => '5.008',
    META_MERGE => {
        resources => {
            repository => 'https://github.com/rs/net-server-mail',
        },
    },
);