File: Makefile.PL

package info (click to toggle)
libdns-zoneparse-perl 1.10-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 188 kB
  • sloc: perl: 816; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 743 bytes parent folder | download | duplicates (2)
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
use 5.005;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

use strict;
my $meta_merge = {
    META_MERGE => {
        resources => {
            repository  => 'http://github.com/mschilli/dns-zoneparse-perl',
        },
    }
};

WriteMakefile(
    'NAME'		=> 'DNS::ZoneParse',
    'VERSION_FROM'	=> 'lib/DNS/ZoneParse.pm', # finds $VERSION
    'PREREQ_PM'		=> {
                         Storable     => 0.407,
                         'Test::More' => 0.31,
                        },
    'ABSTRACT_FROM' => 'lib/DNS/ZoneParse.pm',
    'AUTHOR' => 'Simon Flack (perl@simonflack.com)',
    $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
);